如何在asp.net中使用查詢字符串。asp.net中的查詢字符串
5
A
回答
7
這取決於究竟query.string你指的是語言做了,但是......
Request.QueryString["MyValue"];
http://msdn.microsoft.com/en-us/library/system.web.httprequest.querystring.aspx
2
Request.QueryString["StringValue"];
2
0
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>asp.net QueryString example: how to use QueryString</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:Navy">QueryString Example</h2>
<asp:HyperLink
ID="HyperLink1"
runat="server"
NavigateUrl="~/Image.aspx?ImageID=1&ImageName=Elephant"
Text="Test QueryString"
>
</asp:HyperLink>
</div>
</form>
你也可以使用按鈕單擊事件,而不是頁面加載。
protected void Page_Load(object sender, System.EventArgs e) {
string ID = Request.QueryString["ImageID"];
string Name = Request.QueryString["ImageName"];
Label1.Text = "ImageID: "+ ID;
Label2.Text = "Image name: "+ Name;
Image1.ImageUrl = "~/Images/"+Name+".jpg";
}
相關問題
- 1. Asp.Net查詢字符串
- 2. asp.net查詢字符串
- 3. ASP.NET查詢子字符串
- 4. ASP.NET查詢字符串
- 5. asp.net中的查詢字符串錯誤
- 6. 從asp.net中刪除查詢字符串
- 7. 查詢字符串的ASP.NET URL重寫
- 8. C#asp.net圖片廊查詢字符串
- 9. ASP.Net查詢字符串超時
- 10. ASP.NET System.Web.Routing和查詢字符串參數
- 11. Url用ASP.NET查詢字符串重寫
- 12. asp.net查詢字符串數據綁定
- 13. ASP.NET MVC - 重寫FormMethod.Get查詢字符串?
- 14. ASP.NET MVC路由和查詢字符串
- 15. Asp.net MVC 3全局查詢字符串?
- 16. 顯示查詢字符串asp.net
- 17. 填表與ASP.NET MVC查詢字符串
- 18. ASP.NET MVC RedirectToAction查詢字符串
- 19. ASP.NET查詢字符串第二個值
- 20. ASP.NET查詢字符串沒有等號
- 21. 隱藏查詢字符串MVC3 -ASP.NET
- 22. Asp.Net MVC加密查詢字符串
- 23. 查詢字符串在asp.net MVC 2
- 24. ASP.NET MVC:URL路由與查詢字符串
- 25. 重定向查詢字符串的URL非查詢字符串
- 26. 查詢字符串的查詢字符串
- 27. 查詢字符串
- 28. 查詢字符串
- 29. 查詢字符串
- 30. 查詢字符串