上次幕白兄说过但不好意思不记得了
OnClientClick= "return confirm( '真的要添加吗 ') "
我记得得在
return confirm( '真的要添加吗 ')
添加一句代码
我看生成的HTML为
onclick= "javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("btn_ConcertCopy", "", true, "", "", false, false)) "
但这一行太才了吧
这里怎么写 谢谢
谢谢
------解决方案--------------------------------------------------------
为什么我这里的客户端显示是
<input type= "submit " name= "Button1 " value= "Button " onclick= "return confirm( 'XX '); " id= "Button1 " />
------解决方案--------------------------------------------------------
<input type= "submit " name= "Button1 " value= "Button " onclick= "return confirm( 'XX '); " id= "Button1 " />
这个样子就可以了。
------解决方案--------------------------------------------------------
Button.UseSubmitBehavior 属性 设置成了true还是false?
或者
Button.Attributes.Add( "onclick ", "return confirm( '? ') ")
------解决方案--------------------------------------------------------
两钻的都出来了
------解决方案--------------------------------------------------------
if(confirm( '真的提交? '))
{
return WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(event.srcElement.id, " ", true, " ", " ", false, false));
}