当前上下文中不存在名称“BaseClass” 5
usingSystem;usingSystem.Configuration;usingSystem.Data;usingSystem.Linq;usingSystem.W...
using System;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Configuration;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void btnLogin_Click(object sender, EventArgs e)
{
if (textYZM.Text.Trim() != Session["verify"].ToString())
{
Response.Write("<script>alert('验证码错误')location='Login.aspx'</script>");
}
else
{
if (DropDownList1.SelectedValue == "管理员")
{
if (BaseClass.CheckAdmin(textUserName.Text.Trim(), textPassWord.Text.Trim()))
{
Session["ID"] = textUserName.Text.Trim();
Response.Redirect("Admin/AdminMange.aspx");
}
else
{
Response.Write("<script>alert('您不是管理员和密码错误');location='Login.aspx'</script>");
}
}
if (DropDownList1.SelectedValue == "普通用户")
{
if (BaseClass.CheckUser(textUserName.Text.Trim(), textPassWord.Text.Trim()))
{
Session["User"] = textUserName.Text.Trim();
Response.Redirect("User/UserManage.aspx");
}
else
{
Response.Write("<script>alert('您不是普通用户或者用户名和密码错误');location='Login.aspx'</script>");
}
}
}
}
protected void btnClear_Click(object sender, EventArgs e)
{
RegisterStartupScript("提示", "<script>window.close();</script>");
}
} 展开
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Configuration;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void btnLogin_Click(object sender, EventArgs e)
{
if (textYZM.Text.Trim() != Session["verify"].ToString())
{
Response.Write("<script>alert('验证码错误')location='Login.aspx'</script>");
}
else
{
if (DropDownList1.SelectedValue == "管理员")
{
if (BaseClass.CheckAdmin(textUserName.Text.Trim(), textPassWord.Text.Trim()))
{
Session["ID"] = textUserName.Text.Trim();
Response.Redirect("Admin/AdminMange.aspx");
}
else
{
Response.Write("<script>alert('您不是管理员和密码错误');location='Login.aspx'</script>");
}
}
if (DropDownList1.SelectedValue == "普通用户")
{
if (BaseClass.CheckUser(textUserName.Text.Trim(), textPassWord.Text.Trim()))
{
Session["User"] = textUserName.Text.Trim();
Response.Redirect("User/UserManage.aspx");
}
else
{
Response.Write("<script>alert('您不是普通用户或者用户名和密码错误');location='Login.aspx'</script>");
}
}
}
}
protected void btnClear_Click(object sender, EventArgs e)
{
RegisterStartupScript("提示", "<script>window.close();</script>");
}
} 展开
展开全部
只要是在统一命名空间下即可使用此方法。 class a { //调用b类 b b1=new b(); //调用B的方法。 string msg= b1.getBMethod(): } public class
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
只要是在统一命名空间下即可使用此方法。
class a
{ //调用b类
b b1=new b();
//调用B的方法。
string msg= b1.getBMethod():
}
public class b
{
public string getBMethod()
{
return "掉用了B的方法。";
}
}
class a
{ //调用b类
b b1=new b();
//调用B的方法。
string msg= b1.getBMethod():
}
public class b
{
public string getBMethod()
{
return "掉用了B的方法。";
}
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询