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
Can we use html in asp.net?
Why we go for mvc instead of asp.net? : Asp.Net MVC
Do I need to have the latest version of windows media player installed?
What is difference between view state and session state?
To bind columns manually which tags do you need to add within the asp:datagrid ?
Describe the method to create a permanent cookie?
In order to get assembly info which namespace we should import?
i want to implement grid view value in paypal site. so how to create this code in asp.net with C#
How do I create a web form?
How many types of session state management options available in asp.net?
How can we update records in gridview?Is there any appropriate code for it?
What is difference between session and cookie?
What is the main difference between Asp.net and Vb.net?
How to include silver light .xap page into asp.net web application and what is the purpose of using silverlight application?
Types of instancing properties and explain each. Tell the difference between multiuse,singleuse and globalmultiuse and which is default ?