我想在不同的SESSIONS中存储多个值,因为我在VB Code中有多个If条件可以正常工作
If roleRow.Item("Code").ToString() = "101" Then 'Admin Settings
If roleRow.Item("Active") = True Then Session("101") = True Else Session("101") = False
End If
If roleRow.Item("Code").ToString() = "102" Then 'Summaries / Reports
If roleRow.Item("Active") = True Then Session("102") = True Else Session("102") = False
End If
If roleRow.Item("Code").ToString() = "103" Then 'Invoices List
If roleRow.Item("Active") = True Then Session("103") = True Else Session("103") = False
End If
但是相同的代码结构在C#中不起作用。
它仅评估第一个IF条件和静止条件,它显示与第一个IF条件相同的值。有任何建议如何解决这个问题?
private void UserPermissions_Read()
{
BOL.Master.UsersRoles aDA = new BOL.Master.UsersRoles();
DAL.Master.UsersRoles.UsersRolesDataTable aDT = new
DAL.Master.UsersRoles.UsersRolesDataTable();
aDT = aDA.Read("1", 1, "", 1, "", "", "", "");
DataRow dRow;
if (aDT.Rows.Count > 0)
{
dRow = aDT.Rows[0];
if (dRow["Code"].ToString() == "101" && (Boolean)dRow["Active"] == true)
{
Session["101"] = true;
}
else
{
Session["101"] = false;
}
if (dRow["Code"].ToString() == "102" && (Boolean)dRow["Active"] == true)
{
Session["102"] = true;
}
else
{
Session["102"] = false;
}
}
else
{
Session["101"] = false;
Session["102"] = false;
Session["103"] = false;
}
}
答案 0 :(得分:2)
目前还不是很清楚你想要完成什么,但我建议你更多地考虑一下“翻译”这个问题。
这更接近你真正想要完成的事情吗?
//First I'll create an array of every value to be inspected and iterate through it....
foreach (var c in new[] {"104", "105", "106"})
{
//Then I'll check the current value (considering the value of dRow["Active"]...
Session[c] = ( ((bool)dRow["Active"]) && (dRow["Code"].ToString() == c) ) //Thanks to @jjwillmc observation
}
如果您更喜欢仅使用IF,则VB代码转换如下:
If roleRow.Item("Code").ToString() = "101" Then 'Admin Settings
If roleRow.Item("Active") = True Then Session("101") = True Else Session("101") = False
End If
If roleRow.Item("Code").ToString() = "102" Then 'Summaries / Reports
If roleRow.Item("Active") = True Then Session("102") = True Else Session("102") = False
End If
If roleRow.Item("Code").ToString() = "103" Then 'Invoices List
If roleRow.Item("Active") = True Then Session("103") = True Else Session("103") = False
End If
变成:
if (roleRow.Item("Code").ToString() == "101") //Admin Settings
{
if (roleRow.Item("Active"))
Session["101"] = true;
else
Session["101"] = False;
//Or simply: Session["101"] = (roleRow.Item("Active"));
}
if (roleRow.Item("Code").ToString() == "102") //Summaries / Reports
{
if (roleRow.Item("Active"))
Session["102"] = true;
else
Session["102"] = false;
//Or simply: Session["102"] = (roleRow.Item("Active"));
}
if (roleRow.Item("Code").ToString() == "103") //Invoices List
{
if (roleRow.Item("Active"))
Session["103"] = true;
else
Session["103"] = false;
//Or simply: Session["103"] = (roleRow.Item("Active"));
}
希望它有所帮助。
答案 1 :(得分:-1)
完成....在代码中缺少For循环...这样它就是读取每一行并在不同的SESSION中放入每个行值......也在此行之前 DataRow dRow; 您必须将每个SESSION = False声明为默认值....
DataRow dRow;
if (aDT.Rows.Count > 0)
{
for (var i = 0; i <= aDT.Rows.Count -1; i++)
{
dRow = aDT.Rows[i];
if (dRow["Code"].ToString() == "101" && (Boolean)dRow["Active"] == true)
{
Session["101"] = true;
}
else if (dRow["Code"].ToString() == "102" && (Boolean)dRow["Active"] == true)
{
Session["102"] = true;
}
else if (dRow["Code"].ToString() == "103" && (Boolean)dRow["Active"] == true)
{
Session["103"] = true;
}