How to convert a string into an Integer in ASP.net?
Answer Posted / guest
by two ways u can do that
1.
int a = Int.Parse("String");
2.
int a = Convert.Int32("String");
| Is This Answer Correct ? | 100 Yes | 18 No |
Post New Answer View All Answers
Explain about the .NET framework?
What is the difference between file-based dependency and key-based dependency?
What is application variable?
Explain how can we inherit a static variable?
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?
Explain the difference between asp.net mvc and asp.net webforms? : asp.net mvc
Elaborate differentiation between ViewState and SessionState?
Do you support digital rights management to protect my videos?
Which .NET framework supports Web API?
What are the different types of sessions in asp.net? Name them?
Is it possible to migrate visual interdev design-time controls to asp.net?
Difference between web user control and web custom control?
I have an external link in my application say www.xyztest.com. Today this site works on http protocal. Tommorow it may run on https. So i cant hardcore the protocal in the site. When a user clicks on the link how can i know if the external site works on http or https and takes him to that place?
Why is the standalone environment only useful during the development process?
Can you change a Master Page dynamically at runtime?