How to convert a string into an Integer in ASP.net?
Answer Posted / sanjay
1))int a=int.Parse("string");
2))int a=Convert.ToInt32("string");
3))int a=(int)"string";
but the string provided should be integer
| Is This Answer Correct ? | 9 Yes | 2 No |
Post New Answer View All Answers
Define the term Web Garden?
What tags do you need to add within the asp:datagrid tags to bind columns manually? How?
What is use of <% %> in asp.net?
What is postback request?
Explain the difference between server.transfer and response.redirect? Why would I choose one over the other?
How we implement web farm and web garden concept in asp.net?
Which method is used to enforce garbage collection in .net?
Do session use cookies in asp net?
Why is it preferred to not use finalize for clean up?
Can master pages be nested?
What are the validation controls available in ASP.NET?
How does exception management works in ASP.NET?
What is the difference between a cookie and a pixel?
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.
What is autopostback in asp net?