bl双性强迫侵犯h_国产在线观看人成激情视频_蜜芽188_被诱拐的少孩全彩啪啪漫画

ASP.NET如何通過更改Url實現頁面傳值-創新互聯

這篇文章主要講解了“ASP.NET如何通過更改Url實現頁面傳值”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“ASP.NET如何通過更改Url實現頁面傳值”吧!

成都創新互聯公司自成立以來,一直致力于為企業提供從網站策劃、網站設計、成都網站設計、成都網站建設、電子商務、網站推廣、網站優化到為企業提供個性化軟件開發等基于互聯網的全面整合營銷服務。公司擁有豐富的網站建設和互聯網應用系統開發管理經驗、成熟的應用系統解決方案、優秀的網站開發工程師團隊及專業的網站設計師團隊。

這里,通過假數據,手動創建的一個類,然后創建的一個集合,放入下拉框,選好值以后,點確定
會在另一個頁面產生對應的id

創建一個類:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace WebApplication1
{
 public class Dept
 {
  public int Id { get; set; }
  public string DeptName { get; set; }
 }
}

一個選擇的web窗體

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Dept.aspx.cs" Inherits="WebApplication1.Dept1" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
 <title></title>
</head>
<body>
 <form id="form1" runat="server">
  <div>
   <asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="true">

   </asp:DropDownList>
  </div>
  <p>><a href="dept_<%=DropDownList1.SelectedValue %>.html" rel="external nofollow" >查詢</a></p>
 </form>
</body>
</html>

選擇的web窗體的后臺代碼

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace WebApplication1
{
 public partial class Dept1 : System.Web.UI.Page
 {
  protected void Page_Load(object sender, EventArgs e)
  {
   if (!IsPostBack)
   {
    LoadDeptData();
   }
  }

  private void LoadDeptData()
  {
   //手動創建數據
   List<Dept> depts = new List<Dept>
   {
    new Dept{Id=1,DeptName="小明"},
    new Dept{Id=2,DeptName="小王"},
    new Dept{Id=3,DeptName="小李"}
   };
   this.DropDownList1.DataSource = depts;
   //默認顯示的值
   this.DropDownList1.DataTextField = "DeptName";
   this.DropDownList1.DataValueField = "Id";
   //保存
   this.DropDownList1.DataBind();
  }
 }
}

建一個繼承Modules類

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
using System.Web;

namespace WebApplication1.Modules
{
 public class DeptModule : IHttpModule
 {
  public void Dispose()
  {

  }

  public void Init(HttpApplication context)
  {
   context.BeginRequest += Context_BeginRequest;  
  }

  private void Context_BeginRequest(object sender, EventArgs e)
  {
   //處理請求
   //獲取請求url
   HttpApplication application = sender as HttpApplication;
   //相對路徑
   string url = application.Request.RawUrl;
   //一個正則,用來匹配是不是相對應的頁面
   Regex regex = new Regex(@"dept_(\d+).html");
   //正則的匹配后的,微軟給鋪好的路,正則匹配后的一個數組;
   GroupCollection groupCollection = regex.Match(url).Groups;
   //這里取得是數組的第一個值,看看是不是成功匹配了,
   if (groupCollection[0].Success)
   {
    //取到第二個值
    var id = groupCollection[1].Value.Trim('_');
    //存儲id,等用到的時候直接去第二個頁面去取值
    HttpContext.Current.RewritePath("~/DeptDetail.aspx","","deptid="+id);

   }
  }
 }
}

建完了類,要進入配置文件進行配置
因為我這里是放在一個文件夾下面了,所以配置文件指定type的時候,要加一個文件夾的路徑

ASP.NET如何通過更改Url實現頁面傳值

 <system.webServer>
 <modules>
  <add name="Module" type="WebApplication1.Modules.DeptModule"/>
 </modules>
 </system.webServer>

顯示的web窗體

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="DeptDetail.aspx.cs" Inherits="WebApplication1.DeptDetail" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
 <title></title>
</head>
<body>
 <form id="form1" runat="server">
  <div>
   <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
  </div>
 </form>
</body>
</html>

顯示的web窗體的后臺代碼

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace WebApplication1
{
 public partial class DeptDetail : System.Web.UI.Page
 {
  protected void Page_Load(object sender, EventArgs e)
  {
   if (!IsPostBack)
   {
    //直接通過request獲取Module存入的id
    this.TextBox1.Text = $"{Request.QueryString["deptid"]}";
   }
  }
 }
}

效果圖

選擇一個后點擊查詢

ASP.NET如何通過更改Url實現頁面傳值

地址欄和內容都進行了更改

ASP.NET如何通過更改Url實現頁面傳值

感謝各位的閱讀,以上就是“ASP.NET如何通過更改Url實現頁面傳值”的內容了,經過本文的學習后,相信大家對ASP.NET如何通過更改Url實現頁面傳值這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是創新互聯網站建設公司,,小編將為大家推送更多相關知識點的文章,歡迎關注!

分享標題:ASP.NET如何通過更改Url實現頁面傳值-創新互聯
URL鏈接:http://vcdvsql.cn/article36/iidpg.html

成都網站建設公司_創新互聯,為您提供搜索引擎優化自適應網站定制開發軟件開發網站制作靜態網站

廣告

聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯

綿陽服務器托管