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 do u deploy your asp.net application?
What symbol would you use to denote, the start of a code block in aspx views?
What are the differences between clr & cts?
What happens if an ASP.NET server control with event-handling routines is missing from its definition?
What are demand-paging and pre-paging?
What are client activated objects and server activated objects?
Which namespace is used by ado.net?
How can you display all validation messages in one control?
What is the default authentication mode for asp.net?
What are the differences between code behind and code inline?
What is difference between session and application in asp net?
How do you open a page in a new window?
What are navigation controls? How many navigation controls are there in ASP.NET 4.0?
Describe the .net base class library.
What tags do you need to add within the asp:datagrid tags to bind columns manually? How?