asp.net如何在后台代码中执行js
页面代码里放了下面JS代码<scriptlanguage="javascript">functionopendialog(url){//获取文本框输入的内容varstr=...
页面代码里放了下面JS代码
<script language="javascript">
function opendialog(url)
{
//获取文本框输入的内容
var str=document.getElementById("txb_arg").value;
//把内容作为参数传送到弹出的模式对话框里去,并可以设置对话框的大小和滚动条
window.showModalDialog (url,str,"dialogWidth=450px;dialogHeight=400px;status=no;help=no;scrollbars=yes");
}
</script>
cs代码里,在page_load事件里注册按钮的onclick属性可以实现到调用,如下代码
btn.Attributes.Add("onclick", "opendialog('ShowDialog.aspx')");
这段代码是构造页面时在页面源代码里指定的吧,如果我要在这个按钮的单击事件内写代码调用,可以怎么写?我写了下面的代码,但是执行不成功。
protected void btn_Click(object sender, EventArgs e)
{
ClientScript.RegisterStartupScript(this.GetType(), "", "<script>opendialog('ShowDialog.aspx');</script>", true);
}
求高手指导。。 展开
<script language="javascript">
function opendialog(url)
{
//获取文本框输入的内容
var str=document.getElementById("txb_arg").value;
//把内容作为参数传送到弹出的模式对话框里去,并可以设置对话框的大小和滚动条
window.showModalDialog (url,str,"dialogWidth=450px;dialogHeight=400px;status=no;help=no;scrollbars=yes");
}
</script>
cs代码里,在page_load事件里注册按钮的onclick属性可以实现到调用,如下代码
btn.Attributes.Add("onclick", "opendialog('ShowDialog.aspx')");
这段代码是构造页面时在页面源代码里指定的吧,如果我要在这个按钮的单击事件内写代码调用,可以怎么写?我写了下面的代码,但是执行不成功。
protected void btn_Click(object sender, EventArgs e)
{
ClientScript.RegisterStartupScript(this.GetType(), "", "<script>opendialog('ShowDialog.aspx');</script>", true);
}
求高手指导。。 展开
展开全部
把Page_load()事件里面的btn.Attributes.Add("onclick", "opendialog('ShowDialog.aspx')");去掉
ClientScript.RegisterStartupScript(this.GetType(), "", "<script>opendialog('ShowDialog.aspx');</script>", true);
修改为:
ClientScript.RegisterStartupScript(this.GetType(), "aa", "opendialog(ShowDialog.aspx)
", true);试试...
ClientScript.RegisterStartupScript(this.GetType(), "", "<script>opendialog('ShowDialog.aspx');</script>", true);
修改为:
ClientScript.RegisterStartupScript(this.GetType(), "aa", "opendialog(ShowDialog.aspx)
", true);试试...
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
把page_load里面的btn.Attributes.Add("onclick", "opendialog('ShowDialog.aspx')");
去掉,在响应事件里面直接写
this.ClientScript.RegisterStartupScript(this.GetType(),"1","<script>opendialog('ShowDialog.aspx');</script>");试试~~
去掉,在响应事件里面直接写
this.ClientScript.RegisterStartupScript(this.GetType(),"1","<script>opendialog('ShowDialog.aspx');</script>");试试~~
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
直接在HTML里面就可以的
<asp:Button ID="Button1" runat="server" Text="Button" OnClientClick="opendialog('ShowDialog.aspx')" />
<asp:Button ID="Button1" runat="server" Text="Button" OnClientClick="opendialog('ShowDialog.aspx')" />
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询