Writing a Stored procedure to insert the values into a table
Answer / sunil pandey
create procedure pr_ad
as
begin
insert into table_nm values(cl_nm,......)
end
| Is This Answer Correct ? | 1 Yes | 0 No |
when web.config file is being called or referenced?tell me about the searialized procedure followed in page loading.
Explain how viewstate is being formed and how it's stored on client in .net?
What is the difference between function and stored procedure?
If we want to write a Windows service that cannot be paused, only started and stopped. How to accomplish that?
How .NET is able to support multiple languages?
What?s Singleton activation mode?
How does cas works?
DateTime[] dt = new DateTime[10] for(i=0; i<10; i++) { dt[i] = DateTime(2008, 1, i+1) } How many heap object will be created for the above array. Choose the correct answer below. Ans: 1, 10, 11, 12
What is the best way to crack the certification?
Usually in .net, the clr takes care of memory management. Is there any need for a programmer to explicitly release memory and resources? If yes, why and how?
What tags do you need to add within the asp:datagrid tags to bind columns manually.
What is the difference between Server.Transfer and Response.Redirect?