Tuesday, 29 July 2008

Using ASP.NET 3.5 Extensions History Control

This post will provide useful links on how the ASP.NET Extensions Preview allows control over the Browser back button in Ajax. Normally this is not possible using AJAX Controls in WebBrowsers, because AJAX Control's partial postback is not added to the history of Web Browser. Note : ASP.NET AJAX Extensions are available in the ASP.NET 3.5 Extensions Preview (December...
Share:

Using Back Button in ASP.NET 2.0 Ajax

One problem faced by a typical AJAX application is that a partial page update is not added to the history of the Web browser. This means that the browser’s Back button does not move back one AJAX step, but moves back one entire document, which is unlikely to be what the user expects. The below code could be written by a developer in response to a selection change within a list to to add the previous...
Share:

Wednesday, 23 July 2008

Visual Studio .NET 2005 Keyboard Shortcuts

Visual Studio 2005 is a great IDE to develop .NET applications. But If we don't know the keyboard shortcut for some function we have to do it with mouse and it will take lots of time. I have found a great link which contains almost all the short cut for keyboards. Here is the link for that article... http://www.codinghorror.com/blog/files/Visual%20Studio%20.NET%202005%20Keyboard%20Shortcuts.htm...
Share:

Change default Port for the ASP.NET Development Server

When you use the ASP.NET Development Server to run a file-system Web site, by default, the Web server is invoked on a randomly selected port for localhost. For example, if you are testing a page called Default.aspx, when you run the page on the ASP.NET Development Server, the URL of the page might be the following: http://localhost:3499/Default.aspx To specify a port for the ASP.NET Development...
Share:

Friday, 18 July 2008

Method Overloading in WebServices

  Web services are also classes just like any other .NET classes. Nevertheless they have methods marked as WebMethods that can be exposed by the WebServices to be consumed by the outside world. Apart from these WebMethods they can also have normal methods like any other classes have. Since a web service is a class it can utilize all the OO features like method overloading. However...
Share:

Wednesday, 9 July 2008

Visual Studio .NET Hot Fixes

Microsoft has moved all Visual Studio and .NET hot fixes to a single location on MSDN Code Gallery. Here is a link that pulls up all the hot fixes: http://code.msdn.microsoft.com/Project/ProjectDirectory.aspx?TagName=HotfixThey used to be over at the Connect site but you had to log in, and they were...
Share:

Top 100 interview question and short answers

Q1. Explain the differences between Server-side and Client-side code? Ans. Server side code will execute at server (where the website is hosted) end, & all the business logic will execute at server end where as client side code will execute at client side (usually written in javascript, vbscript, jscript) at browser end.Q2. What type of code (server or client) is found in a Code-Behind class?...
Share: