无法从“social.Web.Controls.logo”转换为“System.Web.UI.Page”
--------------------编程问答-------------------- 加密当然还有解密了,如果你是用的是不可逆转的加密,那么获取数据库数据然后加密比较 --------------------编程问答--------------------谢谢
那第一个问题咋解决 --------------------编程问答--------------------
第一个问题:
code12 Maticsoft.Common.MessageBox.ShowAndRedirect(this, "用户名或密码不正确!", "default.aspx");--------------------编程问答-------------------- Maticsoft.Common.MessageBox.ShowAndRedirect(this, "用户名或密码不正确!", "default.aspx");
中的this 是social.Web.Controls.logo类型的,你改为this.page或page试试!
中的this 是social.Web.Controls.logo类型的,你改为this.page或page试试! --------------------编程问答-------------------- 改成如下试试
--------------------编程问答--------------------
参数是js脚本
private static void OutPutJavaScript(string js)
{
Random rand = new Random(DateTime.Now.Millisecond);
string alert = "alert_" + rand.Next().ToString();
System.Web.UI.Page CurPage = (System.Web.UI.Page)HttpContext.Current.Handler;
System.Web.UI.ClientScriptManager cs = CurPage.ClientScript;
if (!cs.IsClientScriptBlockRegistered(CurPage.GetType(), alert))
{
cs.RegisterClientScriptBlock(CurPage.GetType(), alert, js);
}
}
“social.Web.Controls.logo”不包含“page”的定义,并且找不到可接受类型为“social.Web.Controls.logo”的第一个参数的扩展方法“page”(是否缺少 using 指令或程序集引用?) --------------------编程问答--------------------
this.page也没有吗?至于缺少using你可以:在page(或缺少引用using的地方)右键-添加引用(具体那一项记不清了,你自己看看) --------------------编程问答--------------------
这个不关缺少引用的事
补充:.NET技术 , ASP.NET