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?

Answers were Sorted based on User's Feedback



Take one textbox if I am inputting abc alphabet in capital letter or in small letter on the button..

Answer / 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

Take one textbox if I am inputting abc alphabet in capital letter or in small letter on the button..

Answer / 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

Take one textbox if I am inputting abc alphabet in capital letter or in small letter on the button..

Answer / sharumathi

protected void Button1_Click(object sender, EventArgs e)
{
string str = TextBox1.Text;
byte[] a = System.Text.Encoding.ASCII.GetBytes(str);
byte[] b = { a[1], a[2], (++a[2]) };
string x = System.Text.Encoding.ASCII.GetString(b);
TextBox2.Text = x;
}

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More ASP.NET Interview Questions

Can we have multiple worker process in an ASP.NET application? If so then how it has been handled by application? And who handles it?

0 Answers   InfoAxon Technologies,


About writting a query and SP which is better ?

5 Answers   Abacus, Satyam,


How do I know asp.net mvc version? : Asp.Net MVC

0 Answers  


How can we prevent browser from caching an aspx page?

0 Answers  


What are the 3 types of web?

0 Answers  






In a page I have gridview with options of select and delete using hyperlink when I am selecting any one of then it has to open another page how can it?

0 Answers  


What is scope of an application variable in asp.net?

0 Answers  


Explain how caching in asp.net 2.0 is different from caching in asp.net 1.1?

0 Answers  


What is a web farm?

0 Answers  


Usage of web.configuration ?

3 Answers   Microsoft,


How to implement role based security in asp.net mvc? : Asp.Net MVC

0 Answers  


Differences between VB.Net and C#, related to OOPS concepts

5 Answers   CSC,


Categories