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

What are the two Layouts supported by a Web form in ASP.NET?

1071


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

1927


What are client activated objects and server activated objects?

969


What are session objects?

1003


Do gac'ed assemblies have fulltrust?

1077


How can we add an event handler for a ASP.NET function executed on MouseOver for a certain button.

1161


Explain what does wsdl stand for?

1141


What is clr? Difference between clr & cts?

1191


What are the different types of events are occured when a client requests an ASP.NET page from IIS server?

1120


How many types of file extensions for razor views in ASP.Net MVC?

1238


Distinguish between Server-side and Client-side code with its functionality?

1135


How can we use Web API with ASP.NET Web Form?

1110


What is the difference between page directive include and action tag include?

937


What is the difference between web.config and machine.config in ASP.NET?

1153


What are validator? How do you disable them?

1140