ASP.NET 伺服器路徑和一般資源調用

來源:互聯網
上載者:User

頁面代碼: 複製代碼 代碼如下:<%@ Page Language="C#" AutoEventWireup="true" CodeFile="RadioButtonListDemo.aspx.cs"
Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>無標題頁</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:RadioButtonList ID="RadioButtonList_Demo" runat="server" OnSelectedIndexChanged="RadioButtonList_Demo_SelectedIndexChanged"
AutoPostBack="true">
</asp:RadioButtonList>
<br />
<asp:Image ID="Image_Show" runat="server" />
</div>
</form>
</body>
</html>

後台代碼: 複製代碼 代碼如下:using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using CDataBase;
using System.IO;
public partial class _Default : System.Web.UI.Page
{
/// <summary>
/// 頁面載入事件
/// </summary>
/// <param name="sender">控制項發送對象</param>
/// <param name="e">事件對象</param>
protected void Page_Load(object sender, EventArgs e)
{
//取得ConnectionString的值
//Response.Write("<script>alert('" + SqlHelper.conString + "')</script>");
if (!IsPostBack)
{
//先要有路徑 系統根目錄下 福娃檔案夾 下的檔案路徑
string sPath = Server.MapPath(Request.ApplicationPath + "/福娃/");
//取得這個路徑下面所有的檔案名稱 包含其路徑
string[] sFiles = Directory.GetFiles(sPath);
//迴圈所有檔案的路徑
foreach (string sFile in sFiles)
{
//取檔案名稱
string sName = Path.GetFileNameWithoutExtension(sFile);
//取檔案名稱, 包含副檔名
string sFileName = Path.GetFileName(sFile);
//建立RadioButtonList的子項,採用 Text/Value 的重載方式
ListItem rItem = new ListItem(sName, Request.ApplicationPath + "/福娃/" + sFileName);
//將子項添加到RadioButtonList裡
RadioButtonList_Demo.Items.Add(rItem);
}
//設定RBL中選項按鈕的顯示相片順序
RadioButtonList_Demo.RepeatDirection = RepeatDirection.Horizontal;
RadioButtonList_Demo.RepeatLayout = RepeatLayout.Table;
}
}
/// <summary>
/// 選擇項改變事件
/// </summary>
/// <param name="sender">控制項發送對象</param>
/// <param name="e">事件對象</param>
protected void RadioButtonList_Demo_SelectedIndexChanged(object sender, EventArgs e)
{
Image_Show.ImageUrl = RadioButtonList_Demo.SelectedValue.ToString();
}
}

重點
取得網站目錄下某一個目錄的路徑
採用Server.MapPath(Argurment)
參數採用
Request.Appliaction + "/目錄名/"
這句話的意思是
請求伺服器下的某個目錄下的路徑
路徑完了就取的該路徑下的所有檔案名稱
通過System.IO中的Directory對象
的GetFiles(Request.Appliaction)方法
只能該目錄下的所有檔案名稱,可以包含副檔名
路徑還是需要用Request.Application + "/File/"的方式來取得
注釋已經寫的很清楚了.
可以練習一下

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.