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
What are session and cookies?
Which adapter should you use, if you want to get the data from an access database?
What are the namespace classes used in asp.net mvc? : asp.net mvc
Explain some of the major built-in objects in asp.net
i develop a web application and i gave security setting i.e autherization and athentication now it work properly on my local system , now question is ,is this security setting ie autherization and athentication which i gave in web.config will it be enough strong to secure my application on internet or i have to use some 3rd party tool or software to get security .if yes --how ? if no--what is the alternate?
What is sta?
Why do we use web config?
Is it possible to migrate visual interdev design-time controls to asp.net?
What is http protocol and how it works?
What are the two Layouts supported by a Web form in ASP.NET?
What is autopostback true?
Explain the purpose of storyboard.targetproperty.
Explain the difference between an exe and a dll?
How does session id work?
What is custom attribute?