Archive for September 2009

ASP.NET - Stylish submit buttons

Most people would agree the default look of submit buttons is rather dull and unattractive. Using CSS and a nice gradient background image, it's easy to transform a form button from a duck to a swan. Demo: <style type="text/css">.formbutton{cursor:pointer;border:outset

ASP.NET - Stylish submit buttons

Most people would agree the default look of submit buttons is rather dull and unattractive. Using CSS and a nice gradient background image, it's easy to transform a form button from a duck to a swan. Demo: <style type="text/css">.formbutton{cursor:pointer;border:outset

ASP.NET - Stylish submit buttons

Most people would agree the default look of submit buttons is rather dull and unattractive. Using CSS and a nice gradient background image, it's easy to transform a form button from a duck to a swan. Demo: <style type="text/css">.formbutton{cursor:pointer;border:outset

ASP.NET : Dynamically change a style at Run-Time

A nice feature of CSS is the ability to assign multiple classes to can DOM element via the class attribute. This opens up the possibility to dynamically set a class assignment based on some logic as the page is being rendered. The example below demonstrates

ASP.NET : Dynamically change a style at Run-Time

A nice feature of CSS is the ability to assign multiple classes to can DOM element via the class attribute. This opens up the possibility to dynamically set a class assignment based on some logic as the page is being rendered. The example below demonstrates

ASP.NET : Dynamically change a style at Run-Time

A nice feature of CSS is the ability to assign multiple classes to can DOM element via the class attribute. This opens up the possibility to dynamically set a class assignment based on some logic as the page is being rendered. The example below demonstrates

Split camelCase string in C#

Recently in our project there was a requirement were in the validation of the large number text boxes were required to be done.We were following the camel casing as a naming convection for the text box. Mention below function was used to break the camel

Split camelCase string in C#

Recently in our project there was a requirement were in the validation of the large number text boxes were required to be done.We were following the camel casing as a naming convection for the text box. Mention below function was used to break the camel

Split camelCase string in C#

Recently in our project there was a requirement were in the validation of the large number text boxes were required to be done.We were following the camel casing as a naming convection for the text box. Mention below function was used to break the camel

Auto click a button in asp.net on page load event

In page load event itself, you just call the that button click event. private void Page_Load(object sender, System.EventArgs e){ Button1_Click(null, null); // This button event ll fire while page load.}This code will execute the button click event

Auto click a button in asp.net on page load event

In page load event itself, you just call the that button click event. private void Page_Load(object sender, System.EventArgs e){ Button1_Click(null, null); // This button event ll fire while page load.}This code will execute the button click event

Auto click a button in asp.net on page load event

In page load event itself, you just call the that button click event. private void Page_Load(object sender, System.EventArgs e){ Button1_Click(null, null); // This button event ll fire while page load.}This code will execute the button click event