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
Explain code snippet to register exception filters from controller?
What is the typical session identifier?
What is cookies cache and session?
What are the differences between the response.write() and response.output.write()?
What are the advantages of asp.net mvc framework? : asp.net mvc
What do you mean by serialize?
Explain difference between dataset and recordset?
How do I use response redirect?
What is the file extension of web service?
What is the difference between equals() and == in c#?
How can i explain my project during interview?many time i expalain my project but they did't accept? please explain me.
What is the difference between session.abandon() vs clear()?
Why is mvc better than asp.net?
What are the types of session in asp.net?
If you want to bind the columns manually within the asp:datagrid tags what kind of tags you have to add.