报错是:CS0120: 非静态的字段、方法或属性“System.Web.UI.Page.ClientScript.get”要求对象引用
publicstringMassageBox(stringstr,stringurl){str="<scriptlanguage=javascript>alert('"+...
public string MassageBox(string str,string url)
{
str = "<script language=javascript>alert('" + str + "');location='hello.aspx';</script>";
return System.Web.UI.Page.ClientScript.RegisterStartupScript(this.GetType(), "str", str, true);
}
不是这个问题 呵呵 不过问题解决了 谢谢啊 展开
{
str = "<script language=javascript>alert('" + str + "');location='hello.aspx';</script>";
return System.Web.UI.Page.ClientScript.RegisterStartupScript(this.GetType(), "str", str, true);
}
不是这个问题 呵呵 不过问题解决了 谢谢啊 展开
2个回答
展开全部
public void MassageBox(string str, string url)
{
str = "<script language=javascript>alert('" + str + "');location='hello.aspx';</script>";
ClientScript.RegisterStartupScript(this.GetType(), "str", str, true);
}
RegisterStartupScript() 方法是无返回值的(void),所以不能在前面加 return
{
str = "<script language=javascript>alert('" + str + "');location='hello.aspx';</script>";
ClientScript.RegisterStartupScript(this.GetType(), "str", str, true);
}
RegisterStartupScript() 方法是无返回值的(void),所以不能在前面加 return
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询