Sign in
|
Join
Sushila Patel's Weblog
When the going gets tough, upgrade
This Blog
Home
Contact
About
Syndication
RSS
Atom
Comments RSS
Search
Go
Navigation
Home
Blogs
News
Blogs I Read
Deepak Gulati
Colt Kwong
WinVistaClub
Encyclopedia
DotNetSlackers
DotNetBips
My Self
C-Sharpcorner
Dotnetjunkies
Aspfree
Aspalliance
Microsoft MVP
Tags
.NET Faq
Code Samples
General
Personal
Tips and Tricks
Whidbey
Recent Posts
How To: Group Data in the GridView Control
Weekend, Vista Ultimate and my laptop
Somasegar: Listening to your feedback - Expression and MSDN
Google, Yahoo and Microsoft team up
ViewState in-depth
Archives
May 2007 (1)
April 2007 (2)
November 2006 (2)
October 2006 (1)
September 2006 (2)
August 2006 (5)
January 2006 (3)
September 2005 (1)
April 2005 (3)
March 2005 (1)
February 2005 (1)
January 2005 (2)
October 2004 (2)
September 2004 (1)
August 2004 (4)
July 2004 (1)
June 2004 (1)
May 2004 (1)
April 2004 (3)
March 2004 (9)
Browse by Tags
All Tags
»
.NET Faq
(
RSS
)
Sorry, but there are no more tags available to filter with.
Monday, September 04, 2006 11:53 PM
How To: Hide close button for Windows Form
Several times there is a requirement to hide/disable the close button and to close the Form with a button on the Form to exit the application. To hide the Close Button on the form we can set ControlBox propertyof the Form to False (by default its set...
Posted by
SushilaSB
|
6 comment(s)
Filed under:
.NET Faq
Tuesday, August 15, 2006 10:03 PM
How To: Get Selected Date from MonthCalendar control
VB.NET Private Sub MonthCalendar1_DateChanged(ByVal sender As Object, ByVal e As System.Windows.Forms.DateRangeEventArgs) Handles MonthCalendar1.DateChanged 'Display the dates for selected range Label1.Text = "Dates Selected from :" &...
Posted by
SushilaSB
|
2 comment(s)
Filed under:
.NET Faq
Friday, August 04, 2006 11:49 AM
How To: Get the foldername in which the file resides
We come across situation many a times where we need the name of the folder in which the file resides. Let's say the folder is as "C:\Project1\CSProj1\somename\file1.cs" We need to get the folder "somename" We can do this by using...
Posted by
SushilaSB
|
1 comment(s)
Filed under:
.NET Faq
Thursday, August 03, 2006 10:56 PM
How To: Extract numbers from string
VB.NET Shared Function ExtractNumbers( ByVal expr As String ) As String Return String.Join( Nothing, System.Text.RegularExpressions.Regex.Split( expr, "[^\d]" ) ) End Function C# static string ExtractNumbers( string expr ) { return string.Join...
Posted by
SushilaSB
|
5 comment(s)
Filed under:
.NET Faq
Wednesday, August 02, 2006 12:13 PM
How To: Open a pop-up window using dropdownlist
To open pop-up window using <asp:dropdownlist..> VB.NET Protected Sub DropDownList1_SelectedIndexChanged(ByVal sender As Object, ByVal e As EventArgs) Response.Write("<script>window.open('" + DropDownList1.SelectedValue + "'...
Posted by
SushilaSB
|
2 comment(s)
Filed under:
.NET Faq
Sunday, January 22, 2006 6:32 PM
How To: Customize Calendar Control to limit the users to select day on or after today
In this Sample code we will see how to customize calendar control to limit the user to select the day on or after today Step 1: Drag Drop Calendar Control <asp:Calendar id="Calendar1" runat="server"></asp:Calendar> Step 2: In code behind use...
Posted by
SushilaSB
|
2 comment(s)
Filed under:
.NET Faq
Wednesday, April 27, 2005 10:50 PM
ASP.NET Faq on Syncfusion Website
Check out ASP.NET Faq on Syncfusion website.
Posted by
SushilaSB
|
1 comment(s)
Filed under:
.NET Faq
Tuesday, April 05, 2005 10:20 AM
How To: Troubleshoot Microsoft.Net Framework installation issues
When Microsoft Windows Installer is incorrectly registered in the Windows registry, the .NET Framework version Setup program cannot gain access to some Windows Installer components. The below articles discuss how to work around this issue by unregistering...
Posted by
SushilaSB
| with
no comments
Filed under:
.NET Faq
Friday, March 25, 2005 3:02 PM
Validation Controls not working on Firefox
The ASP.Net validations controls only work client side in IE. You can make them work in other browsers, coding as below: C# Page.Validate(); if ( !Page.IsValid ) { return ; } //Continue Your code VB.NET Page.Validate() If Not Page.IsValid Then Return...
Posted by
SushilaSB
|
12 comment(s)
Filed under:
.NET Faq
Wednesday, September 29, 2004 8:37 PM
Sample Code: How to use a RangeValidator to Select Colors from a specific range
<asp:dropdownlist id="DropDownList1" runat="server"> <asp:ListItem Value ="#000000">#000000</asp:ListItem> <asp:ListItem Value ="#ff0000">#ff0000</asp:ListItem> <asp:ListItem Value ="#0000ff">#0000ff</asp:ListItem>...
Posted by
SushilaSB
|
1 comment(s)
Filed under:
.NET Faq
More Posts
Next page »