home *** CD-ROM | disk | FTP | other *** search
-
- <%@ Register TagPrefix="Acme" TagName="SourceCtrl" Src="/quickstart/util/SrcCtrl.aspx"%>
- <%@ Import Namespace="System.Text" %>
- <%@ Import Namespace="System.IO" %>
-
- <link rel="stylesheet" href="/quickstart/util/style.css">
-
- <script language="C#" runat="server">
-
- public void Page_Load (Object sender, EventArgs e)
- {
- String path = Request.QueryString["path"];
-
- if (path == null)
- {
- ErrorMessage.InnerHtml = "Please specify a path variable in the querystring.";
- return;
- }
-
- String file = Request.QueryString["file"];
-
- if (file != null) {
- String dir = File.GetDirectoryNameFromPath(path);
- MySourceCtrl.filename = Server.MapPath(dir + "\\" + file);
- }
- }
-
- </script>
-
- <form runat="server">
-
- <Acme:SourceCtrl id="MySourceCtrl" showfilename="true" runat="server" />
- <span style="color:red" id="ErrorMessage" runat="server"/>
-
- </form>
-