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
How can I have a particular web page in an asp.net application which displays its own error page?
Why would a company use an application service provider?
How asynchronous call can be implemented using delegates?
What is viewstate parameter?
What are the disadvantages of view state?
What are the HTML server controls in ASP.NET?
can any one find and tell the difference between dot net and php which one is best ? which one we get more salary? which one is stable and which one is best for freshers and also better in future and carrer ? which one we wil get more salary sir ? please send ur valuable suggestions to kiranpulsar2007@gmail.com
Where sessions are stored?
Can we add code files of different languages in app_code folder?
What is the difference between page-level caching and fragment caching?
Can action method static?
Explain what is viewstate?
What are the Types of session management in ASP.NET
How to prepare culture-specific formatting in .net.
What is state management in asp.net with example?