尝试在我的受保护字符串函数中为每个循环添加一个,但不断收到错误消息:“并非所有代码路径都返回一个值”。请帮忙。
protected string GetAmountStyle()
{
{
foreach (LFConnection ProdCurrConn in AllConn)
{
if (Login.Contains(ProdCurrConn.UserName) == false)
if ((Request.Browser.Browser.Contains("IE") == true))
{
//th1.Attributes.Add("style", "padding-right: 5px;");
//return "padding-right: 1px;";
return "background-color: #FFFF66;";
}
else
{
//th1.Attributes.Add("style", "padding-right: 5px;");
return "background-color: #FFFF66;";
}
else
{
//th1.Attributes.Add("style", "padding-right: 5px;");
return string.Empty;
}
}