Hai,
I'm Using VS2010.
I have an Update Process of existing record in my web page.
See below my code.
update.aspx
<html xmlns="h
ttp://www.w3.org/1999/xhtml">
<head runat="server">
<script type = "text/javascript">
function ConfirmUpdate() {
var confirm_value = document.createElement("INPUT");
confirm_value.type = "hidden";
confirm_value.name = "confirm_value";
if (confirm("Do you want to save Changes?")) {
confirm_value.value = "Yes";
}
&nbs ...
Go to the complete details ...