Most recent comments
michael Acker 18/04/2013 18:49
In response to
Consuming RSS feeds in an ASP.NET page
Nice Example....
SINGHXLb 10/04/2013 21:15
In response to
The SimpleMembershipProvider, Secure Passwords And The Crypto Helper
Thanks Mike but i have one question what are values for SaltSize and PBKDF2SubkeyLength ?...
Isaac Koss 09/04/2013 21:55
In response to
Inline Editing With The WebGrid
Unfortunately this does not work in MVC 4. Do you have any ideas on how to do this in MVC 4? Thanks...
Satyabrata Mohapatra 05/04/2013 12:19
In response to
I'm Writing A Book On WebMatrix
Sir,
Today i got the book "Beginning ASP.NET Web Pages with WebMatrix". It is a fantastic book !!...
Boyd Campbell 04/04/2013 20:25
In response to
The WebGrid Helper - Making Selections
If I repopulate the grid with a brand new set of data, the WebGrid is keeping a handle on the row. I...
Derek 03/04/2013 17:35
In response to
Parameter Queries in ASP.NET with MS Access
I am using Microsoft Access 2010 and Visual Studio 2010.
What must be done to handle the case where...
Asit 01/04/2013 08:12
In response to
Cheat Sheet - .NET Framework Exceptions
Great list! I bookmarked this page reference. Thanks! :)...
waqar 01/04/2013 06:12
In response to
Globalization And Localization With Razor Web Pages
excellent article...
Garry 31/03/2013 21:58
In response to
Upload and Crop Images with jQuery, JCrop and ASP.NET
This is an excellent article! Nice one @Mikesdotnetting....
Amit Jahanabadi 30/03/2013 15:54
In response to
Dependency Injection and Inversion of Control with ASP.NET MVC
One of the Best Article on DI & IoC, I have ever read. Thank You!...
Most Popular - Last 7 Days
Most Popular - Last 30 Days
Most Popular - All Time
Latest Entries
A Degradable jQuery AJAX Email Form for ASP.NET MVC
Mikesdotnetting
-
29 May 2009 15:58
Pretty much every web site on the Internet features a form for users to provide feedback via email to site owners. This site is no different. Migrating to ASP.NET MVC requires a slightly different approach to that used by Web Forms development, so this article looks at one way to implement a web site contact form using the MVC framework and jQuery that degrades nicely. AJAX functionality is said to be "degradable" if a way is provided for the process to work, even though users don't have Javascript available to them.
Click to read more about A Degradable jQuery AJAX Email Form for ASP.NET MVC ...
Filed under:
AJAX
ASP.NET 3.5
jQuery
ASP.NET MVC
as
Tutorial
Viewed: 40419 times
ASP.NET MVC Partial Views and Strongly Typed Custom ViewModels
Mikesdotnetting
-
11 May 2009 07:06
I'm in the process of rewriting mikesdotnetting.com using the ASP.NET MVC framework. It's an interesting experience, in that this is my first exposure to MVC. The first stumbling block I encountered was how to pass data in a satisfactory way to Partial Views which only represent part of the data that is to be displayed in the View. Since I struggled to find clear guidance on this, I thought I would share a way to do it.
Click to read more about ASP.NET MVC Partial Views and Strongly Typed Custom ViewModels ...
Filed under:
ASP.NET MVC
Entity Framework
as
Tutorial
Viewed: 182919 times
Many ways to communicate with your database using jQuery AJAX and ASP.NET
Mikesdotnetting
-
04 May 2009 18:39
I've recently done a series of articles that feature calling databases via AJAX using jQuery. In pretty much all of the articles, I have used Web Services as my data access mechanism. Judging from the comments that some of the articles have attracted, this has caused a little confusion. But Web Services is just one mechanism. Page Methods and simple ASPX files are two more. And finally, as pointed out by a commenter, Benny Halperin, ASHX files are yet another option. In this article, I shall review each of these approaches.
Filed under:
AJAX
ASP.NET 3.5
jQuery
as
Tutorial
Viewed: 739168 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: 47899 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: 95870 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: 23644 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: 34122 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: 28959 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: 104805 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: 80262 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: 170393 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: 168759 times
Create a Google Site Map with ASP.NET
Mikesdotnetting
-
31 December 2008 09:32
Over Christmas, I had a bit of spare time, so I decided to add some functionality to this site. One of the things that I added was the ability for people to post comments about specific articles, and you will see that a form has been added at the end of this article. The other thing I have been meaning to get round to is to add a Google Site Map. I believe I have created my site to be as friendly to Google's bots as possible, but there is no harm in submitting a site map to guarantee that Google knows about all the pages I want indexed.
Click to read more about Create a Google Site Map with ASP.NET ...
Filed under:
ASP.NET 3.5
as
Tutorial
Viewed: 19329 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: 24356 times
MS Access Date and Time with ASP.NET
Mikesdotnetting
-
13 December 2008 21:47
Getting odd results and unexpected errors when working with Dates and Times in Access through ASP.NET is a common problem. Here's an overview of the Access DateTime data type, and some resolutions to the more frequently encountered errors.
Click to read more about MS Access Date and Time with ASP.NET ...
Filed under:
MS Access
ASP.NET 3.5
as
Tutorial
Viewed: 28635 times


