A.使用XmlDocument對象讀取XML數(shù)據(jù),同時(shí)指定相應(yīng)架構(gòu)文件。 B.為XmlReader對象的XmlReaderSettings設(shè)置ValidationEventHandler; C.使用DataSet對象讀取XML文件,并且設(shè)置EnforceConstraints屬性為True; D.使用DataSet對象讀取XML文件,并且在DataSet.MergeFailed事件中分析數(shù)據(jù)看是否符合XML架構(gòu)。
A.Application_BeginRequest B.Application_End C. Application_Start D.Application_EndRequest
A.if (Request.Browser["IsMobileDevice"] == "true") Response.Redirect("MobileDefault.aspx"); else Response.Redirect("DesktopDefault.aspx"); end if B.if (Request.Cookies.IsMobileDevice) Response.Redirect("MobileDefault.aspx"); else Response.Redirect("DesktopDefault.aspx"); end if C.if (Request.Browser.IsMobileDevice) Response.Redirect("MobileDefault.aspx"); else Response.Redirect("DesktopDefault.aspx"); end if D.if (Request.Cookies["IsMobileDevice"] == "true") Response.Redirect("MobileDefault.aspx"); else Response.Redirect("DesktopDefault.aspx"); end if