How to convert a string into an Integer in ASP.net?
Answer Posted / sai krishna
int a = Convert.ToInt32("2");
int b = Int32.Parse("3");
Response.Write( a.ToString() + " " + b.ToString());
Is This Answer Correct ? | 11 Yes | 1 No |
Post New Answer View All Answers
Can any body provide me the sample web application in asp.net
What is a postback ispostback and autopostback in asp net?
What is variable and constant in .net programming language?
How to reduce the width of textbox in editcommandcolumn of datagrid?
Can we handle the error and redirect to some pages using web.config?
What is aspect-oriented programming?
What are the advantages and disadvantages of session?
Who can consume WebAPI?
If I have more than one version of one assemblies, then how will I use old version (how/where to specify version number?) In my application?
How can we identify that the page is post back in asp net?
In order to bind the data from a data source to the Repeater control what property is set and what method must you call in your code,?
Why is global asax is used?
What are the navigation ways between pages available in ASP.NET?
What is the difference between session.abandon() vs clear()?
Which method do you use to enforce garbage collection in .net?