In this blog I am not going to write a big epic on how to crack interviews but just briefing on it i
[More]
We can find the checked value of a radio button using :checked attribute and radio button's name as a selector.
The System.Web namespace contains the important base level ingredients for ASP.NET applications. System.Web namespace is an important base for Web Form user interface and web services.
Use of Built-in Objects like Request and Response are very common and widely used. We directly write them without creating objects as they are built-in objects.This namespace has following built-in Objects : (1) Request (2) Response (3) Server (4) Application
[More]
1. December 2011
Anil Kumar
Asp.Net
Those who want to decide which URL routing technique to be used and in which scenario, can have look into "IIS URL Rewriting and ASP.NET Routing" posted by Ruslan Yakushev.
He says:
"Either IIS URL rewriting or ASP.NET routing can be used to implement URL manipulation scenarios f...
[More]
Microsoft is promoting jQuery and so Visual Studio 2010 is having inbuilt intellisense for it. But for earlier version of Visual Studio i.e. VS 2008, it can be done by installing kb file.Upgrade Visual Studio 2008 to Service Pack 1 and use the KB958502. This hotfix can be downloaded from -http://arc...
[More]
SOAP is XML based protocol, format-for-sending-messages and used over HTTP.
Web services are used to handle interoperability problem and have given a way to exchange the data in different platforms.
It uses Simple Object Access Protocol (SOAP) to transport data over networks. XML is widely used for structuring, coding data and decoding data.
[More]
Here are few tricks which can boost the working of Update Panel as they eliminate/minimize the huge data transfer in asynchronous calls.
1. Set the UpdateMode property conditional for each Update-Panel. Ex.- UpdateMode="...
[More]
22. April 2011
Anil Kumar
Asp.Net , C#
Null coalescing operator in C# comes under binary operators and used for checking null. It works fine with both types: reference types and nullable types. One more important point regarding this operator is - it is right associative operator like our assignment, and conditional operators. So it start evaluating from right to left.
[More]