how to convert from sql2000 numeric to int in asp.net with
sqlparameter?



how to convert from sql2000 numeric to int in asp.net with sqlparameter?..

Answer / 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

More ASP.NET Interview Questions

What are directives in asp.net?

0 Answers  


Difference between web.config and app.config?

3 Answers   ITC Infotech, Jenesys Technologies,


What are the new login controls in asp.net 2.0?

0 Answers  


Whats the difference between registerclientscriptblock, registerclientscriptinclude and registerclientscriptresource?

0 Answers  


If iam developing an application that must accomodate multiple security levels though secure login and my asp.net web appplication is spanned across three web-servers (using round-robbin load balancing) what would be the best approach to maintain login-in state for the users?

0 Answers  






Explain about the Class view window?

0 Answers  


Describe how to implement globalization and localization in the use interface in .net.

0 Answers  


can we transfer data from one page to another page using viewstate if so how?if not y?

1 Answers   Patni,


What is the difference between Debug.Write and Trace.Write? When should each be used?

2 Answers   Infosys,


Name the control which can be used to reserve the space on web page for storing localized data.

3 Answers   IBM,


What is the difference between viewstate and hidden field in asp.net?

0 Answers  


how to convert from sql2000 numeric to int in asp.net with sqlparameter?

1 Answers  


Categories