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

Why session is necessary in web application?

0 Answers  


If I update session state, should I lock it, too? Are concurrent accesses by multiple requests executing on multiple threads a concern with session state?

1 Answers  


Can you explain one critical mapping? Performance issue which one is better?

0 Answers  


What is operator overloading in dotnet

1 Answers  


How do you manage session in ASP and ASP.NET ?

2 Answers   Cap Gemini, Microsoft,






What is the difference between managed and unmanaged code? *******

2 Answers   Patni,


How can we create a website?

0 Answers  


what is mean by framework?

3 Answers  


What are themes and skins in 2.0, explain usage scenario?

0 Answers  


How do you construct HtmlResponseMessage?

1 Answers  


What are Master Pages in ASP.NET? or What is a Master Page?

0 Answers   MCN Solutions,


What is true about application service provider?

0 Answers  


Categories