19 items found in the Javascript Category
What ASP.NET Can And Cannot Do
Mikesdotnetting
-
23 November 2009 22:26
If you are new to web development and choose ASP.NET Web Forms as your starting point, you may be forgiven for not understanding how ASP.NET works, and what its role is. This article covers the basics which should help you discover your limits.
Click to read more about What ASP.NET Can And Cannot Do ...
Filed under:
Javascript
General
ASP.NET 3.5
as
Tutorial
Viewed: 11913 times
jQuery Star Rating with ASP.NET MVC
Mikesdotnetting
-
08 September 2009 13:40
There are a number of jQuery star rating plugins to choose from. All have their pros and cons. For this site, I decided to implement the one from FyneWorks because it allows for split stars. Here's how I did it.
Click to read more about jQuery Star Rating with ASP.NET MVC ...
Filed under:
AJAX
Javascript
jQuery
ASP.NET MVC
as
Tutorial
Viewed: 34436 times
Build your own Whois Lookup with ASP.NET and jQuery
Mikesdotnetting
-
14 April 2009 22:39
IP addresses can reveal a lot about your web visitors. For an ecommerce site, the owner or registrant of the visitor's IP address can be very useful information. You could paste each visitor IP address into one of the many free IP Lookup sites available, but that can be time-consuming and tedious. Or you could build your own lookup. This article shows how this can be done pretty quickly.
Click to read more about Build your own Whois Lookup with ASP.NET and jQuery ...
Filed under:
AJAX
Javascript
ASP.NET 3.5
jQuery
as
Tutorial
Viewed: 47904 times
Lazy Loading jQuery Tabs with ASP.NET
Mikesdotnetting
-
02 March 2009 07:30
This article looks at efficient use of jQuery tabs when displaying data. Specifically, it covers how to lazy-load data, so that it is only accessed and displayed if the tab is clicked.
Click to read more about Lazy Loading jQuery Tabs with ASP.NET ...
Filed under:
AJAX
Javascript
ASP.NET 3.5
jQuery
as
Tutorial
Viewed: 95876 times
Persisting the position of jQuery Draggables in ASP.NET
Mikesdotnetting
-
04 February 2009 22:29
It was bound to happen - you knock up an article on jQuery draggables one day, and the next, someone like Jim ;-) comes along and asks about persisting the position of the dragged item across Postbacks, or even sessions. I suppose it's my fault - I mentioned using draggables in a previous life in the context of saving the position, so it's only fair I share how that's done.
Click to read more about Persisting the position of jQuery Draggables in ASP.NET ...
Filed under:
AJAX
Javascript
ASP.NET 3.5
jQuery
as
Tutorial
Viewed: 23645 times
Experimenting with jQuery Draggables and ASP.NET
Mikesdotnetting
-
01 February 2009 08:12
One of the keystones of modern AJAX-enabled web sites is Drag and Drop. This article looks at the current state of Draggables that form part of the jQuery UI Library.
Click to read more about Experimenting with jQuery Draggables and ASP.NET ...
Filed under:
Javascript
ASP.NET 3.5
jQuery
as
Tutorial
Viewed: 34127 times
Preventing duplicate User Names with ASP.NET and jQuery
Mikesdotnetting
-
24 January 2009 18:18
It's a common problem: you have a registration form, but you want to prevent user names or other values from being used more than once. You need a user-friendly way to prevent duplicate values being submitted. This is where the simplicity of jQuery excels.
Click to read more about Preventing duplicate User Names with ASP.NET and jQuery ...
Filed under:
AJAX
Javascript
ASP.NET 3.5
jQuery
as
Tutorial
Viewed: 28963 times
Ajax with Classic ASP using jQuery
Mikesdotnetting
-
17 January 2009 23:13
My simple article on Ajax with Classic ASP is one of the most popular on this site. So I thought it's about time I updated it to show how to use jQuery to Ajaxify a Classic ASP page. Since I did that, the jQuery version became even more popular but needed to be brought up to date. This latest version uses a couple of suggestions that have been provided by commentors to improve the code. I have also added a download which contains all the code needed to run the samples.
Click to read more about Ajax with Classic ASP using jQuery ...
Filed under:
Classic ASP
VBScript
AJAX
Javascript
jQuery
as
Tutorial
Viewed: 104830 times
Cascading DropDownLists with jQuery and ASP.NET
Mikesdotnetting
-
13 January 2009 08:47
Cascading DropDownLists or dependent dropdowns are the signature dish for AJAX applications. I spent quite a while fiddling to try to get some to work, before stumbling across a life-saving jQuery plugin that makes working with DropDownLists on the client-side a breeze. This article shows how it all works, and makes use of the WebService I introduced in my previous jQuery article.
Click to read more about Cascading DropDownLists with jQuery and ASP.NET ...
Filed under:
AJAX
Javascript
ASP.NET 3.5
jQuery
as
Tutorial
Viewed: 80290 times
Handling JSON Arrays returned from ASP.NET Web Services with jQuery
Mikesdotnetting
-
10 January 2009 09:09
There appear to be many articles showing how to use jQuery with ASP.NET Web Services around, but the vast majority of them illustrate the use of PageMethods that return a single value - typically "Hello World!" or the current date and time. Not much use in the real world, where you may more often need to call a service that returns a collection of complex objects. Here are a couple of examples that look at playing with more than just simple values.
Click to read more about Handling JSON Arrays returned from ASP.NET Web Services with jQuery ...
Filed under:
AJAX
Javascript
ASP.NET 3.5
jQuery
ASP.NET Web Forms
as
Tutorial
Viewed: 170438 times
Upload and Crop Images with jQuery, JCrop and ASP.NET
Mikesdotnetting
-
05 January 2009 13:54
I got given jQuery In Action for Christmas. By nature, I'm kind of a late adopter, and I'm already regretting this fact. jQuery has been around for some time, and I wished I had looked at it sooner. It's a fantastic library that really simplifies Javascript development, and is already attracting a goodly number of plug-ins. JCrop is one such, and while it hasn't yet reached version 1.0, it is remarkably easy to use as a web based image cropper. Here's how to put jQuery, JCrop and a FileUpload control together to allow users to upload images and crop them.
Click to read more about Upload and Crop Images with jQuery, JCrop and ASP.NET ...
Filed under:
C#
AJAX
Javascript
ASP.NET 3.5
jQuery
as
Tutorial
Viewed: 168802 times
A DataBound Javascript News Ticker for ASP.NET
Mikesdotnetting
-
25 December 2008 14:18
It's funny how requirements come along like buses in the ASP.NET forums - you suddenly get the same thing asked for by two or more people in quick succession. Recently, a couple of people asked for help creating a Javascript ticker, like the one at the top of the BBC News site, which displays a selected number of headlines drawn from a database. I had adapted the code from the BBC site to create a similar widget that displayed the most recent threads in a message board on an old Classic ASP site some time ago. It's about time I dusted it off and updated it for use in an ASP.NET application.
Click to read more about A DataBound Javascript News Ticker for ASP.NET ...
Filed under:
Javascript
ASP.NET 3.5
as
Tutorial
Viewed: 24359 times
ViewState, form fields, labels and Javascript
Mikesdotnetting
-
25 August 2007 12:34
An interesting question came up on the ASP.NET forums asking why a TextBox which has its value changed by client-side Javascript persists those changes across postbacks, while a Label does not. And in a nut shell, this question covered two of the biggest causes of confusion among newcomers to ASP.NET: the difference between ViewState and IPostBackDataHandler; and the difference between client-side operations and server-side operations.
Click to read more about ViewState, form fields, labels and Javascript ...
Filed under:
ASP.NET 2.0
Javascript
ASP.NET Web Forms
as
Tutorial
Viewed: 35731 times
Javascript functions for form fields
Mikesdotnetting
-
12 May 2007 22:54
A number of useful functions for accessing various properties and values of form fields.
Click to read more about Javascript functions for form fields ...
Filed under:
Javascript
as
Snippet
Viewed: 6323 times
ASP.NET and Ajax - using XmlHttpRequest
Mikesdotnetting
-
08 May 2007 17:32
If you are not interested in using the ASP.NET AJAX library offered for ASP.NET, but would like to feature small amounts of AJAX functionality on your pages, you can do this easily with some javascript and a receptive page.
Click to read more about ASP.NET and Ajax - using XmlHttpRequest ...
Filed under:
ASP.NET 2.0
AJAX
Javascript
as
Tutorial
Viewed: 57924 times


