我不知道如何将此代码转换为VB
if ((string)Session["type"] != "administrator")
{
Response.Redirect("login.aspx");
}
答案 0 :(得分:2)
If DirectCast(Session("type"), String) <> "administrator" Then
Response.Redirect("login.aspx")
End If
答案 1 :(得分:0)
以下是转换后的代码:
If DirectCast(Session("type"), String) <> "administrator" Then
Response.Redirect("login.aspx")
End If