URL Rewriting in ASP.NET Web Form

URL Rewriting-asp.net url rewriting has lots of benefits, listing its main benefits 1.     SEO Friendly URL 2.     Secured URL 3.     No need to change bookmark with change in...

Read more

Using c# regex matches to check if string is alphnumeric

The c# regex.match method is typically used to validate a string or to ensure that a string conforms to a particular pattern without retrieving that string for subsequent...

Read more

Clear All TextBox control using a Common Method | Clear the Control Text using a Common Method

I have implemenetd a common method to clear the Text of few Controls. One of that is Textbox.If  sometimes you requires to clear all the input fields of...

Read more

How to Capitalize the First Letter of All Words in a string in C# ?

Often we need to capitalize the first letters of some word or some text (for example when we want to display users name or city name etc). Since...

Read more

How to set default focus to a control in ASP.NET WebForm after Page Loads?

When we  thinking how to solve this is problem  JavaScript comes in our mind And off course, that IS THE WAY TO GO. ASP.NET 2.0 introduced DefaultFocus and DefaultButton properties for HtmlForm...

Read more