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 what is viewstate?
What is web configuration file and how to use in web application
How to deploy/publish webservices?How many ways?Plz explain me
What kind of data can be stored in viewstate?
What is custom events? How to create it?
What is the use of data set in asp.net?
How can you implement the postback property of an asp.net control?
What is .net framework and what are the main components of it?
Which method is used to perform all validation at the page level?
What is the purpose of url encoding?
Please briefly explain the usage of global.asax?
I have an excel file with data, i am importing this excel file data into Sqlserver 2005 database. while importing i am getting wrong data(ie, special characters) in one column(description column), upto some limit the data in that column is coming fine,after that data is coming like below. The "Walter" leather storage bench is one of our most popular styles. The top with the tufting and double stitching finish a very impressive piece. The size is perfect in front of beds and the storage adds another functional bonus. Open it up and sneak al���Ƴ�Â��ƴ�Ã��ƶ�Å�� al���Ƴ�Â��ƴ�Ã��ƶ�Å�� Is there anywhy to resolve this? (I am using recordset in coding for developing import process.) please help me soon.
Describe a Windows Service and its lifecycle ?
What is difference between inproc and outproc?
how to debug web services on consumer side?