Browse by Tags
I think my wife is also transforming into a GEEK (not computer geek!). She has recently started her own blog on www.blogger.com . If you are interested in reading something non-technical and extremely interesting then browse through her posts. http://nailasdiary.blogspot.com/
Read More...
When I was creating the Polling module I need to fire the server method right after registering the callback method. I thought this would be simple as I just needed to call the method right after registering. Well, not really let's check out the code
Read More...
Agile Houston invites Venkat Subramaniam to give a session on FIT (Framework for Integrated Test). I have never attended the Agile Houston group before but I think it will be a blast. So, if you are in Houston area be sure to visit this session. You can
Read More...
ASP.NET AJAX framework includes the System.Web.Script.Serialization which helps to serialize the .NET object to a JSON representation string. I am using ASP.NET 2.0 callbacks to call the server side method using the client side code. // Create JSON String
Read More...
A new poll has been created on GridViewGuy. You can visit GridViewGuy and cast your vote. Share this post: email it! | bookmark it! | digg it! | reddit! | kick it! | live it! Sponsor
Read More...
A week ago I started a poll in which I asked "Which Ajax framework do you mostly use?" with the following choices: ASP.NET AJAX AJAX PRO Library Anthem.NET Plain XmlHttp Object The winner by a long margin was the MS ASP.NET AJAX. Surprising! not really.
Read More...
AJAX is a superb technology but it has some sharp edges. Here are couple of things that I came across when developing AJAX enabled applications. Let's say that you have a page which sends request to the server using ASP.NET 2.0 Client Callbacks (Behind
Read More...
I was working on my demo application when I needed to test a Custom Membership Provider. Here is a small piece of code that tests whether the user got created or not. [ TestFixture ] public class UserTestFixture { [ Test ] [ RollBack ] public void CanAddUser()
Read More...
Which AJAX Framework do you mostly use? ASP.NET AJAX AJAX PRO Library Anthem.NET Plain XmlHttp Object This is the new poll on GridViewGuy. Simply visit GridViewGuy and cast your vote. The poll control will be on the upper right hand side of the screen.
Read More...
INPUT checkbox checked property is kind of funny. This is because the name of the property also becomes the value of the property as shown in the example below: input type="checkbox" checked = "checked" or simply input type="checkbox" checked So, if you
Read More...
In my opinion your client/user should never see the yellow screen of death. There are numerous ways to redirect the user to a custom error page. In this post I will discuss how to use Application_Error event in the Global.asax file. Let's check out
Read More...
In this post I will demonstrate how to use WebClient.UploadFile to upload multiple files to the server. The attachment procedure is like gmail which allows you to select one file after the other. < a href ="#" onclick ="attachFile()">
Read More...
Just found a great link to Scott Guthrie LINQ to SQL articles. All the articles are compiled into a single PDF format. Check it out using the link below: http://it-box.blogturk.net/wp-content/themes/it-box/files/LINQToSql.pdf Share this post: email it!
Read More...
Mike Bosch has an excellent post about using Fiddler with localhost. Originally, I used to use fiddler with localhost by replacing the localhost with the computer name. Mike describes that you can simply put a "." after the localhost and it will work
Read More...
I have just published an article on GridViewGuy in which I discussed how to create a Poll user control that can be used to collect and display the poll on the website. You can read the article using the link below: Creating AJAX Enabled Poll User Control
Read More...