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
Why we are using mvc instead of asp.net? : Asp.Net MVC
To display data in a Repeater control which template you provide?
How to sign out from forms authentication?
Define asp.net caching?
What are the authentication types in asp.net?
In a webservice, need to display 10 rows from a table. Which is the best choice among datareader or dataset?
What is connection pooling and how to enable and disable connection pooling?
How to Insert/Add in ASPXgridview
How to use a Master Database in Asp.net?
Where is asp.net view state stored?
Which is better asp.net or php?
What is application and session in asp.net?
Types of instancing properties and explain each. Tell the difference between multiuse,singleuse and globalmultiuse and which is default ?
What is Model-View-View Model?
Is asp.net core faster?