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
What is a SESSION and APPLICATION object?
What is a reflection?
What is a swagger in web api?
What is the significance of finalize method in .net?
What is the main difference between Asp.net and Vb.net?
How you will manage the state of ASP.NET controls?
Define the types of configuration files.
How to you can limit Access to Web API to Specific HTTP Verb?
What is connection pooling and how to enable and disable connection pooling?
What is ipostback?
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?
Describe the diffeerence between inline and code behind?
Which protocol is used in a web api?
Explain different types of Caching techniques in ASP.NET?
How do you declare static variable? What is its lifetime?