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 / sagnikmukh
i am posting the basic logic,
class Program
{
static void Main(string[] args)
{
string test = "123";
StringBuilder st=new StringBuilder ();
int l;
l = test.Length;
for (int i = l; i > 0; i--)
{
st = st.Append(test.Substring(i - 1,
1).ToString ());
}
Console.WriteLine(st.ToString ());
Console.Read();
}
}
this will be the Button event in ASP.NEt Page.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
How response object is related to asp's response object?
Is there any property names “isnavigating”?
How can you handle unmanaged code exceptions in asp.net?
How can we use Web API with ASP.NET Web Form?
Can you edit data in the Repeater control? Which template must you provide, in order to display data in a Repeater control? How can you provide an alternating color scheme in a Repeater control? What property must you set, and what method must you call in your code, in order to bind the data from some data source to the Repeater control?
What are session cookies?
How do I upload a file from my ASP.NET page?
Describe the diffeerence between inline and code behind - which is best in a loosely coupled solution?
Explain difference betn dataset and recordset?
What is app_code folder in asp net?
Does web services support data reader like pom project?
Are cookies stored on server or client?
How to Insert/Add in ASPXgridview
What is css in asp.net?
Tell me what is the request flow used for asp.net mvc framework? : asp.net mvc