My friend done this below coding for custom control
<a href="javascript:__doPostBack('id','msg');">click</a>
now i want to show confirm dialog box while click this anchor link.
Is it possible?. i want to write script as inline.
|
My friend done this below coding for custom control
now i want to show confirm dialog box while click this anchor link. Is it possible?. i want to write script as inline. |
|||
|
Do this :
But at some point, you'd want to stop using only inline code and have a look at other clearer ways to add javascript in your code. You may use a script block like this in the HEAD of your HTML file :
And then your link becomes
Of course, this doesn't feel much simpler with only one function but it helps you put all your functions in the same place and make lighter and clearer html. An alternative would be to use jQuery, so that you may totally avoid putting javascript in the html part. The html is then
And your script, now at the end of the body, is this one :
You're not at all required to code it this way now, as you only have a very light function, but if your code grows I suggest you start considering it and look at the jquery tutorials. |
|||||
|
|
Of course. Here is a small snippet, not elegant but it works...
|
|||
|
|
|
I actually had to look this up because I haven't used
So your resulting code would be
|
|||
|
|
confirm()) where you do your according stuff and call it from__doPostBack(). – Christoph Jun 21 '12 at 9:27