how to convert from sql2000 numeric to int in asp.net with
sqlparameter?
Answer Posted / manishn19j
sqlParameter objpara=new sqlParameter();
objpara=objDataadapter.UpdataCommand.Parameter.Add("@Age",SqlDbType.Int);
objpara.SourceColumn="Age";
objpara.SourceVersion=DataRowVersion.Current;
| Is This Answer Correct ? | 14 Yes | 5 No |
Post New Answer View All Answers
Describe the diffeerence between inline and code behind - which is best in a loosely coupled solution?
How to comment out asp.net tags?
What are the event handlers that can be included in the Global.asax file?
Explain different types of validators in asp.net?
Which property is used to identify the Page is Post Back in ASP.NET?
How does asp page work?
What is the advantage of mvc over asp.net? : Asp.Net MVC
what are the web form events available in asp.net?
What are the different types of cookies in asp.net?
How many types of cache are there?
what is the difference between response.write() and response.output.write()?
What is a 404 redirect?
I’m having some trouble with cas. How can I diagnose my problem?
Explain the difference between asp & asp.net.
What are the benefits of view state?