首页 > 代码库 > 009-程序集路径Web窗体
009-程序集路径Web窗体
1 <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Index.aspx.cs" Inherits="t1_HelloWorld.Index" %> 2 <%@ Import Namespace="System.Reflection" %> 3 4 <!DOCTYPE html> 5 6 <html xmlns="http://www.w3.org/1999/xhtml"> 7 <head runat="server"> 8 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> 9 <title></title> 10 </head> 11 <body> 12 <form id="form1" runat="server"> 13 <div> 14 <%=Path1 %> 15 <hr/> 16 <%=Assembly.GetExecutingAssembly().Location%> 17 </div> 18 </form> 19 </body> 20 </html>
1 public partial class Index : System.Web.UI.Page 2 { 3 protected string Path1 { get; set; } 4 protected void Page_Load(object sender, EventArgs e) 5 { 6 Path1=Assembly.GetExecutingAssembly().Location; 7 Response.Write("Hello World"); 8 } 9 }
009-程序集路径Web窗体
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。