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 / nitin kumar nitin@bbspl.com
string str;
str = text4.Text;
string one, two,three;
string four;
char dd;
one = str.Substring(1,2);
three = str.Substring(2, 1);
two = one;
four = three;
dd=char.Parse(four);
int con = Convert.ToInt32(((int)dd).ToString());
string str1 = char.ConvertFromUtf32(con+1);
text5.Text = two + str1;
| Is This Answer Correct ? | 11 Yes | 2 No |
Post New Answer View All Answers
Where is cookie used in asp.net?
What is the difference between cookie and session?
What is difference between viewstate and session state in javascript?
What is the difference between application state and session state in asp net?
What is the typical session identifier?
Elaborate differentiation between Cache and Application?
ASP.NET 2.0's new membership API used for creating and managing user account is exposed through which 2 clause?
What is asp.net with mvc? : Asp.Net MVC
What is difference between datalist and gridview?
How would you get asp.net running in apache web servers? Explain it's limitations.
What is master page in dtp?
How you can stop the validation of ASP.NET controls from client side?
What is the equivalent of date() and time() in asp.net?
What is the importance of aspnet_isapi.dll, inetinfo.exe andaspnet_wp.exe in the page loading process.
What is difference Between Authentication and authorization?