热门IT资讯网

xml文件读取后绑定到gridview

发表于:2024-11-30 作者:热门IT资讯网编辑
编辑最后更新 2024年11月30日,DataSet ds = new DataSet();string filePath = FileUpload1.PostedFile.FileName.ToString();try{if (file

DataSet ds = new DataSet();
string filePath = FileUpload1.PostedFile.FileName.ToString();
try
{
if (filePath == " ")
{
Response.Write("");
}
else
{
ds.ReadXml(filePath);
gvPersonList.DataSource = ds.Tables[0];
gvPersonList.DataBind();
}
}
catch(Exception)
{
Response.Write("");
}

0