Use Server.MapPath() to load the file in the current directory (VB.net) : Server class « Development « ASP.NET Tutorial






<%@ Page Language="VB" %>
<%@ Import Namespace="System.Xml" %>

<script runat=server>
   sub Page_Load(Sender as Object, e as EventArgs)
      dim reader as XMLTextReader
         
      try
         reader = new XMLTextReader(Server.MapPath("books.xml"))
         While reader.Read()
            Response.Write("<b>" & reader.Name & "</b> " & _
                reader.Value & "<br>")
         
         End While
      catch ex as Exception
         Response.Write("Error accessing XML file")
      finally
         reader.close
      end try
   end sub
</script>

<html><body>

</body></html>

File: books.xml

<?xml version="1.0"?>
<bookstore>
  <book genre="asdf">
    <title>asdf</title>
    <author>
      <first-name>asdf</first-name>
      <last-name>asdf</last-name>
    </author>
    <price>asdf</price>
  </book>
  <book genre="asdf">
    <title>asdf</title>
    <author>
      <first-name>asdf</first-name>
      <last-name>asdf</last-name>
    </author>
    <price>asdf</price>
  </book>
  <book genre="asdf">
    <title>asdf</title>
    <author>
      <first-name>asdf</first-name>
      <last-name>asdf</last-name>
    </author>
    <price>asdf</price>
  </book>
</bookstore>








9.39.Server class
9.39.1.Use Server.HtmlEncode to encode HTML tags (C#)
9.39.2.Use Server.Transfer to transfer action to another aspx file (C#)
9.39.3.Server.UrlEncode
9.39.4.Forward the user to the information page, with the query string data (#)
9.39.5.Use Server.MapPath() to load the file in the current directory (VB.net)
9.39.6.Demonstration of Page_Error Handler
9.39.7.text generated by Execute can be embedded in the main response or cached in a writer object
9.39.8.Server.Execute
9.39.9.Server.GetLastError()
9.39.10.Server.HtmlDecode
9.39.11.Server.HtmlEncode
9.39.12.Server.MachineName
9.39.13.Server.MapPath
9.39.14.Server.ScriptTimeout
9.39.15.Server.Transfer
9.39.16.Server.UrlDecode
9.39.17.Server.UrlPathEncode