Posts

Showing posts from September, 2014

Convert first letter of word to Capital

Image
Convert first letter of word to Capital < html xmlns ="http://www.w3.org/1999/xhtml"> < head runat ="server">     < title ></ title >     < script type ="text/javascript" language ="javascript">         function FirstCaps(id) {             var txt = document.getElementById(id);             txt.value = txt.value.replace(/\w\S*/g, function (txt) { return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase(); });         }     </ script > </ head > < body >     < form id ="form1" runat ="server">     < div >         < asp : TextBox ID ="TextBox1" runat ="server" onkeyup ="FirstCaps(this.id)"...

Create Alphabetic control and fetch its value on click in Asp.net c#

Image
Create Alphabetic control and fetch its value on click in Asp.net c# Step 1:Desgin web form .aspx page < form id ="form1" runat ="server">     < div >         < asp : Panel ID ="pnlAlphabate" runat ="server" Style =" border-color : Black; border-width : 1px;             border-style : solid; width : 200px; margin-bottom : 20px;">         </ asp : Panel >     </ div >     </ form > Step 2:Logic on .Cs page protected void Page_Load( object sender, EventArgs e)     {                string str = "A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, ALL" ;         string [] spt = str.Split( ',' );  ...