我正在使用 asp.net。我正在尝试拆分数据表中的数据。我有一个这样的代码示例:
{ dt=objErrorLoggingDataAccess.GetErrorDetails(errorID);
string[] stringSeparators = new string[] { "Message" };
string error = dt.Rows[0]["Message"].ToString();
string[] test = error.Split(stringSeparators, StringSplitOptions.None);
string PageName = test[0].ToString();
PageNameLabel.Text = PageName;
stringSeparators=new string[] {HttpContext.Current.Request.Url.ToString()};
error = dt.Rows[0]["Message"].ToString();
test = error.Split(stringSeparators, StringSplitOptions.None);
string Message = test[0].ToString();
MessageLabel.Text = Message;}
在数据表中有以下数据:
{....ID.......Message.......................................................................................................................
....1........http://localhost:10489/images/CategoryIcon/images Message : File does not exist. UserName: naresh@naresh.com
....2........http://localhost:10489/images/CategoryIcon/images Message : File does not exist. UserName: iswar@iswar.com}
我的问题是:如何拆分消息并存储在标签中?我想
{http://localhost:10489/images/CategoryIcon/images}
分别和 UserName 和 message 分开。我怎样才能做到这一点?通过执行上面的代码,我可以拆分
{ http://localhost:10489/images/CategoryIcon/images
}
只要。如何拆分 Message 列并存储在 pageLabel、MessageLabel、UserNamelabel 中?