我需要在gvLocations_RowDeleting部分的gridview中调用if条件的javascript警报。
代码如下:
protected void gvLocations_RowDeleting(object sender, GridViewDeleteEventArgs e)
{
if (CheckIfLocationExists(ID) == true)
{
//need to call javascript function sendmessage() here??
}
}
我在.aspx文件中有一个javascript函数,如下所示
<script type="text/javascript">
function sendmessage()
{
alert("Area is associated with this location already");
}
</script>
我知道这很容易,但出于某种原因,我遇到了麻烦。有人可以帮忙吗?提前致谢。 Stack Overflow rock!
答案 0 :(得分:2)
其实我弄清楚了。希望这会帮助别人。使用下面的代码,就像一个魅力..
Page.ClientScript.RegisterStartupScript(this.GetType(), "helloworldpopup", "alert('hello world');", true);