You can use of PopUpextender and develop an confirm like in java script refer post http://www.codeproject.com/Questions/185470/Javascript-confirm-message-from-code-behind
Or try like this in.cs code
string msg1; msg1 = "confirm('are You sure you want to delete Madhuri s data ...!');"; if (!ClientScript.IsStartupScriptRegistered("error")) { RegisterStartupScript("error", msg1); }
When I use a barcode scanner in a normal notepad, it scans a code like this: 2000000415369. When I create an input field in HTML and put focus into that field and scan a barcode, it still outputs the ...
When I use a barcode scanner in a normal notepad, it scans a code like this: 2000000415369. When I create an input field in HTML and put focus into that field and scan a barcode, it still outputs the ...
I have an HTML table and I want to mark cells by adding a class to the highest and lowest value of each column. I have found a few related questions here, but the code misbehaves. var $table = $("#...
I have an HTML table and I want to mark cells by adding a class to the highest and lowest value of each column. I have found a few related questions here, but the code misbehaves. var $table = $("#...
First of all, word of explanation: I'm new to all this Meteor stuff so it might be a stupid question. In my Meteor code I have a template: <template name="hour_form"> <form id="add_hours"&...
First of all, word of explanation: I'm new to all this Meteor stuff so it might be a stupid question. In my Meteor code I have a template: <template name="hour_form"> <form id="add_hours"&...
I'm new to JavaScript server developement. I recognized the "mean" stack. MongoDB, Express.js, Angular.js and node.js. Where is the difference between express.js and anguar.js and do I need both at ...
I'm new to JavaScript server developement. I recognized the "mean" stack. MongoDB, Express.js, Angular.js and node.js. Where is the difference between express.js and anguar.js and do I need both at ...