本文介绍了javascript:AskConfirmation更改确定取消文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述





我想更改以下代码的确定/取消按钮的文字:



ScriptManager.RegisterStartupScript(this,GetType(),Done,javascript:AskConfirmation(''+单击确定继续,取消以回滚+'');,true);



请告诉我这是怎么做到的。





问候,

Pranav

Hi,

I want to change the text for ok/cancel buttons for the following code :

ScriptManager.RegisterStartupScript(this, GetType(), "Done", "javascript:AskConfirmation(''" + "Click OK to continue and Cancel to rollback" + "'');", true);

Please let me know how can this be accomplished.


Regards,
Pranav

推荐答案



这篇关于javascript:AskConfirmation更改确定取消文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-31 05:30