how can we use java script message alert with asp.net with
useing vb.net coding show full process with its coading
Answer Posted / me
To work with javascript in ASP.NET, the best way to do it,
is using the Page.ClientScript object at some point.
For instance, if you want to show an alert box when the
page is finished loading, use this:
string javascript = "alert('Finished loading!');"
Page.ClientScript.RegisterStartupScript(typeof
(string), "key", javascript,true);
The ClientScript object has other methods, like
RegisterClientScriptBlock, RegisterClientScriptInclude,
RegisterExpandoAttribute and so on, which all allow you to
add javascript to the page in different ways.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Does spacing matter in javascript?
List out the different ways an HTML element can be accessed in a Javascript code?
What is strict mode?
what is the difference between window & document in javascript?
what will happen and why if i will acess the methods of superclass which is declared as private by a object of same subclass.
How can you declare a class in javascript?
Explain a story about javascript performance problems?
Do I need javascript enabled?
How do you write a comment in javascript?
How long does it take to learn javascript?
What is difference == and === in javascript?
What is console.log()?
What is === in javascript?
Explain the terms synchronous and asynchronous code?
Is javascript hard to learn?