KaushaL.NET

Posts Tagged ‘C#.NET

Asynchronous Request to Server (JavaScript)

Posted by: Kaushal on: July 16, 2008

I have seen posts today asking for Asynchronous Request to Server which will Query the Database for certain information.
Here, I am giving one example, which will send an Asynchronous Request to server for Checking the availablity of the UserName entered by the user against database.
Below is my WebPage:
<div>
<asp:Label ID=”Label1″ runat=”server” Text=”UserName:”></asp:Label>
<asp:TextBox ID=”TextBox1″ runat=”server”></asp:TextBox>
<asp:Button ID=”Button1″ runat=”server” [...]

Vertically Scrollable Repeater with fixed Headers

Posted by: Kaushal on: June 30, 2008

I had to find some work-a-round for a scrollable repeater. The way I want it to be is to have fix headers with able to vertically scrollable. I found lots of example dealing for this solution with CSS and JavaScript. Luckily, I found one which works in both IE and FF. I managed to make [...]

Multiple Active Result Sets (MARS – ADO.NET 2.0)

Posted by: Kaushal on: June 30, 2008

Multiple Active Result Sets (MARS) is a feature in ADO.NET 2.0. It allows execution of multiple batches against Database on a single connection. Preeviously, only one batch could be executed at a time against a single connection. But, execution of multiple batches with MARS does not mean like simultaneous execution of operations.
In previous versions of [...]

Below, is the JavaScript code function snippet I used in one of my web application; to provide the functionality of “Select All Child” when ParentNode CheckBox is Checked; means to automatically Check all the ChildNode CheckBoxes, when you Check the ParentNode. I used the TreeView Control with ShowCheckBoxes Property.. Read More…

DataTableReader Class in ADO.NET

Posted by: Kaushal on: June 30, 2008

Eventhough DataTableReader is an excellent concept and got lot of advantages when compared to SqlDataReader, it is not yet widely used in web application development. Even I have never used the DataTableReader Class in any of my application before. But, the combination of DataTable + DataReader (I.e. connected + disconnected architecture) is the most impressive [...]

In this post; I will try to explain use of Recursion method to clear TextBoxes in nested Container Controls.
Below is the Iterative code snippet to clear TextBoxes within any Container Control… Read More…

Convert Date from any format to any format

Posted by: Kaushal on: June 30, 2008

Check out my article on “Convert Date from any format to any format in .NET”.
I come accross a code snippet while development which can be useful to convert the date display format. Read More…

Introduction to .NET Remoting – 1

Posted by: Kaushal on: June 30, 2008

Check out my article on “Introductin to .NET Remoting – 1″.
The article will give you introduction to the world of Distributed Application development and its respective technologies. Read More…


Victims

  • 39,089 Hits

Calendar

November 2009
M T W T F S S
« Jun    
 1
2345678
9101112131415
16171819202122
23242526272829
30  

Archives

KaushaL Parik (Microsoft MVP – ASP.NET)