Take one textbox if I am inputting abc alphabet in capital
letter or in small letter on the button click it will be
bcd or if I enter 123 and it would be 234 like that in
ASP.NET?
Answer Posted / sharumathi
protected void Button1_Click(object sender, EventArgs e)
{
string str = TextBox1.Text;
byte[] a = System.Text.Encoding.ASCII.GetBytes(str);
byte[] b = { a[1], a[2], (++a[2]) };
string x = System.Text.Encoding.ASCII.GetString(b);
TextBox2.Text = x;
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the file extension of web service?
Do you support digital rights management to protect my videos?
What is data grid view in asp.net?
What is the usage of DelegatingHandler?
How do I force the dispose method to be called automatically, as clients can forget to call dispose method?
What can we do with asp.net?
Mention the execution process for managed code?
How do session tokens work?
How to comment out asp.net tags?
What is a 401 redirect?
How can u deifne the benefits and limitation of using Viewstate for state management?
Where is cookie used in asp.net?
Where the cookie value is stored?
What is the importance of aspnet_isapi.dll, inetinfo.exe andaspnet_wp.exe in the page loading process.
Write code to send e-mail from an asp.net application?