How to Customize Individual Days in a Calendar Web Server Control
Refer Customizing Individual Days in a Calendar Web Server Control
How to reset the selected date in the calendar control?
VB.NET Calendar1.VisibleDate = DateTime.Today Calendar1.SelectedDates.Clear() C# Calendar1.VisibleDate = DateTime.Today; Calendar1.SelectedDates.Clear();
How to open a new Window using javascript function from a Link button
VB.NET link.Attributes( ‘onClick’ ) = ‘window.open( ’url’, ’name’, ’properties’ )’; C# link.Attributes[ ‘onClick’ ] = ‘window.open( ’url’, ’name’, ’properties’ )’; You can also check out Andy Smith’s RemoteWindow Control
How to cast the value entered in a textbox to integer
VB.NET Int32.Parse(TextBox1.Text) C# Int32.Parse(TextBox1.Text);
How to display a Wait page while a query is running
Refer Asynchronous Wait State Pattern in ASP.NET