Answer Posted / sathish
create procedure <pro.name>
{
@variable declartion,,,,,
AS
if exist(select the table with condition)
BEGIN
update query
END
else
BEGIN
//insert new data
END
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What is the use of service provider?
What is asp.net response object?
Hi this is the coding for adding data in to an xml table
i want the coding for update and delete
Try
Dim emp_xml_doc As New XmlDocument
If
System.IO.File.Exists(Server.MapPath("emp.xml")) Then
emp_xml_doc.Load(Server.MapPath("emp.xml"))
Dim myrow_element As XmlElement
myrow_element =
emp_xml_doc.CreateElement("EmpDetails")
Dim str As String
str = "
Define web.config in .net?
Where is asp.net session stored?
How you can access the values from the Repeater control in ASP.NET?
How can we secure the data which is send from client side to server? Like the login id and paasword needs to be authenticated on the server but we cannot send it in plain text into the server.One more thing we are not using the SSL here.
Explain what is event bubbling?
Is data edited in the Repeater control?
What are the properties of the eventargs argument when capturing keyboard events?
Which is better asp.net or php?
Can you change a master page dynamically at runtime? How?
Briefly describe the role of global.asax?
What is the importance of aspnet_isapi.dll, inetinfo.exe andaspnet_wp.exe in the page loading process.
What is dynamic web page with example?