我正在使用协会。 NET C#,并用XmlDataSource工具写了一页,读到Xml文档,并在GridView中显示数据。 在档案中,一切都很重要。 然而,每小时生成Xml文档,如果在档案更新时能与网页连接(约2分钟),就会发现错误(因为档案没有)。 由于我正在使用内在工具连接和阅读Xml,因此,如果档案存在,如果档案没有,我可以用来检查该网页。
I can see that there is code to do an if exists, however I can not seem to figure out the part "what to do?" to ignore the XMLDataSource tool. Perhaps I can make a label appear that says to come back in a few minutes, but how do I get it to ignore the data reader?
if (!File.Exists(filename))
{
// what to do?
}