how can i call output parameters from ado.net
Answers were Sorted based on User's Feedback
Answer / vallabh naik
SqlParameter arParams = New SqlParameter("@FeedbackID",
SqlDbType.Int);
arParams.Direction = ParameterDirection.Output;
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / vineet tiwari
u can call output parameters in ado.net through store
procedure.
Is This Answer Correct ? | 1 Yes | 1 No |
Answer / krishnarao
i have to write a one example
sqlconnection con=new sqlconnection(" u can write
Connection string here);
sqlcommand cmd=new sqlcommand();
cmd.ConnectionString=con;
cmd.CommandText="u can write stored procedure name here";
cmd.CommandType=CommandType.StoredProcedure;
SqlDataReader dr;
dr=cmd.ExecuteReader();//the stored procedure will be
executed here.the out put parameters will be stored into
datareader.
TextBox.Text1=dr.GetValue(0).ToString();//get the output
values here.
TextBox.Text2=dr.GetValue(1).ToString();//get the output
values here.
Is This Answer Correct ? | 3 Yes | 6 No |
What are asynchronous callbacks ?
6 Answers Accenture, BirlaSoft,
How can we identify that the page is post back in asp net?
What is shadowing?
How to create discussion forum in asp.net mvc? : Asp.Net MVC
Explain what are webservices?
Define a web service in .net?
Explain the difference between codebehind="mycode.aspx.cs" and src="mycode.aspx.cs"?
Is it possible to prevent a browser from caching an ASPX page?
Do ASP.NET forms authentication cookies provide any protection against replay attacks? Do they, for example, include the client's IP address or anything else that would distinguish the real client from an attacker?
Should validation (did the user enter a real date) occur server-side or client-side? Why?
How do you use css in asp.net?
How can you implement the postback property of an asp.net control?