我理解客户端和服务器端脚本之间的区别。我的MasterPage
中有一个javascript函数和变量:
<script language="JavaScript" type="text/javascript">
var needToConfirm = false;
window.onbeforeunload = confirmExit;
function confirmExit()
{
if (needToConfirm)
{
needToConfirm = false;
return "Currently in edit mode. If you leave the page now then you will lose unsaved changes."
}
}
</script>
鉴于在我的ASP.NET(客户端)上,我可以将needToConfirm
变量的值更改为true
onClientClick
,但默认情况下为false。这是一个例子。
<asp:Button ID="btnEdit" runat="server" Text=" Edit " onclick="btnEdit_Click" OnClientClick="needToConfirm = true;" />
现在的问题是,在C#(服务器端)上,我必须在needToConfirm
下将if-statement
设置为true,但不一定在Page_Load
上:
private void SetDefault()
if (Session[def.ID_CUST] != null)
{
//I want to change the variable value here
}
}
感谢。
更新
我正在使用.NET 2.0 Classic和WebForms
答案 0 :(得分:8)
:
ScriptManager.RegisterStartupScript(this, this.GetType(), "", "urFunction('urValHere');", true);
在客户端:
function urFunction(urParam) {
//do what u want here
//use urParam
}
答案 1 :(得分:5)
您可以使用隐藏的输入,然后将此输入从服务器端设置为true
或false
。
在客户端:
<input type="hidden" id="hdnConfirm" runat="server" value="false"/>
然后在服务器端:
if (Session[def.ID_CUST] != null)
{
//I want to change the variable value here
hdnConfirm.Value = "true";
}
然后在客户端:
var needToConfirm = $('#hdnConfirm').val();
答案 2 :(得分:2)
如果我理解正确,您可以在http://msdn.microsoft.com/en-us/library/z9h4dk8y.aspx的示例中注册客户端脚本。
ClientScriptManager cs = Page.ClientScript;
if (!cs.IsStartupScriptRegistered(this.GetType(), "EditMode")) {
cs.RegisterStartupScript(this.GetType(), "EditMode", "needToConfirm = true;", true);
}
这会在页面中编写一个脚本,在Javascript中设置needToConfirm
的值。
答案 3 :(得分:1)
根据你的更新说它是.NET 2.0,你可以设置一个javascript变量:
Page.RegisterStartupScript("SetVar", "var needToConfirm = true;");
http://msdn.microsoft.com/en-us/library/system.web.ui.page.registerstartupscript(v=vs.80).aspx
答案 4 :(得分:1)
仅供参考。以下是4.5种做法的方法:
// Define the name and type of the client scripts on the page.
const String csname1 = "MyScriptName";
Type cstype = this.GetType();
// Get a ClientScriptManager reference from the Page class.
ClientScriptManager cs = Page.ClientScript;
// Check to see if the startup script is already registered.
if (!cs.IsStartupScriptRegistered(cstype, csname1))
{
StringBuilder cstext1 = new StringBuilder();
cstext1.Append("<script> var myVariable = true; </");
cstext1.Append("script>");
cs.RegisterStartupScript(cstype, csname1, cstext1.ToString());
}
答案 5 :(得分:0)
Maby有帮助吗?
<script type="text/javascript">
function test(confirm){
var needToConfirm = confirm;
window.onbeforeunload = confirmExit;
function confirmExit() {
if (needToConfirm) {
needToConfirm = false;
return "Currently in edit mode. If you leave the page now then you will lose unsaved changes."
}
}
}
</script>
<asp:Button ID="btnEdit" runat="server" Text="Edit" onclick="btnEdit_Click" OnClientClick="javascript:test(true);" />