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


Please Help Members By Posting Answers For Below Questions

What is a SESSION and APPLICATION object?

768


What is a reflection?

750


What is a swagger in web api?

781


What is the significance of finalize method in .net?

762


What is the main difference between Asp.net and Vb.net?

784


How you will manage the state of ASP.NET controls?

759


Define the types of configuration files.

728


How to you can limit Access to Web API to Specific HTTP Verb?

892


What is connection pooling and how to enable and disable connection pooling?

710


What is ipostback?

798


How will you do windows authentication and what is the namespace? If a user is logged under integrated windows authentication mode, but he is still not able to logon, what might be the possible cause for this? In ASP.Net application how do you find the name of the logged in person under windows authentication?

774


Describe the diffeerence between inline and code behind?

727


Which protocol is used in a web api?

808


Explain different types of Caching techniques in ASP.NET?

739


How do you declare static variable? What is its lifetime?

710