Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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 / 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       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain the use of errorprovider control in .net?

1008


What are the different ways you would consider sending data across pages in ASP (i.e between asp to asp)?

1040


Is data edited in the Repeater control?

1083


witch is the best insistute in sharpoint course.what abt future of share point course.

3537


Which is the parent class of the ASP.NET server control?

1105


To bind columns manually which tags do you need to add within the asp:datagrid ?

1017


What is actually returned from server to the browser when a browser requests an .aspx file and the file is displayed?

1082


What is http session state?

1027


What are the merits and demerits of viewstate?

1086


What are client activated objects and server activated objects?

1021


Define static function?

1070


Define transparent caching with aop?

1176


how to debug web services on consumer side?

1115


How many validators do ASP.NET have?

1154


ASP.NET 2.0's new membership API used for creating and managing user account is exposed through which 2 clause?

1983