《ASP.NET開發與應用實踐》例題複習用
1.labal控制元件----顯示當前日期
- 工具箱–>labal控制元件–>ID屬性改為lblMessage
- 切換到程式碼編輯器,在Page_Load事件輸入以下程式碼:
protected void Page_Load(object sender,EventArgs e)
{
lblMessage.Text="當前日期為:"+DateTime.Now.ToLongDateString();
}
2.ListBox控制元件----選擇嚮往的城市
本案例中,使用2個ListBox分別存放城市例表和被選中的城市名稱,通過2個按鈕,分別對所選城市在2個ListBox之間進行移動
程式碼如下
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace Button控制元件
{
public partial class WebForm1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click1(object sender, EventArgs e)
{
//遍歷左側ListBox的每一項
for (int i = ListBox1.Items.Count - 1; i >= 0; i--)
{
//取得當前項ListItem
ListItem listItem = ListBox1.Items[i];
if (listItem.Selected)//如果被選中
{
//往右側ListBox中加如該項
ListBox1.Items.Remove(listItem);
//從左側ListBox中移除選中的專案
ListBox2.Items.Add(listItem);
}
}
}
protected void Button2_Click1(object sender, EventArgs e)
{
//遍歷左側ListBox的每一項
for (int i = ListBox2.Items.Count - 1; i >= 0; i--)
{
//取得當前項ListItem
ListItem listItem2 = ListBox2.Items[i];
if (listItem2.Selected)//如果被選中
{
//往右側ListBox中加如該項
ListBox2.Items.Remove(listItem2);
//從左側ListBox中移除選中的專案
ListBox1.Items.Add(listItem2);
}
}
}
}
}
源檢視
新增工具箱中html的表格Table控制元件,改的rowspan =“2”(單元格向下打通的欄數),改單元格的屬性style的“塊”的text-align為center
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="Button控制元件.WebForm1" %>
<!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>
<style type="text/css">
.auto-style1 {
height: 32px;
}
.auto-style2 {
width: 100%;
height: 281px;
}
.auto-style3 {
width: 1px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<table class="auto-style2">
<tr >
<td rowspan="2" class="auto-style3">
<asp:ListBox ID="ListBox1" runat="server" AutoPostBack="True" Height="249px" SelectionMode="Multiple" Width="371px">
<asp:ListItem>廣州</asp:ListItem>
<asp:ListItem>上海</asp:ListItem>
<asp:ListItem>北京</asp:ListItem>
<asp:ListItem>杭州</asp:ListItem>
<asp:ListItem>鄭州</asp:ListItem>
</asp:ListBox>
</td>
<td class="auto-style1" style="text-align: center">
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click1" Text="-->" />
</td>
<td rowspan="2">
<asp:ListBox ID="ListBox2" runat="server" Height="248px" SelectionMode="Multiple" Width="329px"></asp:ListBox>
</td>
</tr>
<tr>
<td style="text-align: center">
<asp:Button ID="Button2" runat="server" OnClick="Button2_Click1" Text="<--" />
</td>
</tr>
</table>
</div>
</form>
</body>
</html>
3.DropDownList控制元件----城市選擇
程式碼如下
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace Button控制元件
{
public partial class WebForm1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Label1.Text ="你選擇的城市是:"+ DropDownList1.SelectedItem.Text;
}
}
}
FileUpload控制元件
1. 使用FileUpload控制元件上傳圖片檔案
(1)頁面介面設計
- 在窗體上新增一個FileUpload控制元件,新增FileUpload控制元件後,出現一個文字框和一個按鈕。需要再新增一個上傳檔案的Button,ID屬性為“btnUpload”,執行將檔案上傳到伺服器快取的功能。再新增一個Label控制元件
- 在網站專案中新增一個名為UploImage的資料夾,用來存放上傳的檔案
(2)編寫程式碼
3. 為Button控制元件新增驗證上傳檔案的程式碼,如果是影像檔案,儲存到檔案系統中,否則提示檔案型別不接受。
4. 具體程式碼如下
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace Button控制元件
{
public partial class WebForm1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void btnUpload_Click(object sender, EventArgs e)
{
Boolean fileOK = false; //置檔案驗證fileOK的初始值為false
string path = Server.MapPath("~/UploadImage/"); //設定檔案上傳路徑
if(FileUpload1.HasFile) //如果已經點選瀏覽並新增檔案到FileUpload文字框中
{
//獲取FileUpload文字框中的檔名,並轉為小寫字母
string fileExtentision = System.IO.Path.GetExtension(FileUpload1.FileName).ToLower();
//設定允許上傳圖片副檔名
string[] allowdExtensions = { ".gif", ".png", ".jpeg", ".jpg" };
//驗證新增的檔案是否屬於圖片檔案
for(int i=0;i<allowdExtensions.Length;i++)
{
if(fileExtentision==allowdExtensions[i])
{
fileOK = true;
}
}
//如果驗證上傳的是圖片檔案,開始上傳到伺服器的操作
if(fileOK)
{
try
{
//上傳到UploadImage目錄,並在Label中顯示資訊
FileUpload1.PostedFile.SaveAs(path + FileUpload1.FileName);
Label1.Text = "檔案已經上傳成功!<BR>" + "上傳檔名為:" + FileUpload1.FileName + "<BR>檔案大小為:" + FileUpload1.PostedFile.ContentLength / 1024 + "KB";
}
catch(Exception ex)
{
//如果捕獲到錯誤,提示錯誤資訊。
Label1.Text = "檔案上傳失敗!原因是:" + ex.Message;
}
}
else
{
//圖個上傳的不是圖片檔案,提示錯誤資訊
Label1.Text = "不可接受的檔案型別!請上傳圖片檔案!";
}
}
}
}
}
2.上傳大檔案
(1)程式碼改字元陣列為:
string allowedExtensions = {".mp3"}
其他不變
(2)為支援大檔案的上傳,需要在web.config配置檔案的配置maxRequestlength和requwstLengthDiskThreshold屬性的值
相關文章
- XPages 開發實踐:開發基於 XPages 的複合應用程式
- 深度學習的應用與實踐深度學習
- 後臺開發 -- 核心技術與應用實踐
- 最佳實踐(3):Windows應用開發Windows
- BizWorks助力企業應用的高效開發與複用
- ASP.NET Web開發實用程式碼舉例(一)ASP.NETWeb
- ASP.NET Web開發實用程式碼舉例(二)ASP.NETWeb
- ASP.NET Web開發實用程式碼舉例(三)ASP.NETWeb
- Flutter與Native混合開發-FlutterBoost整合應用和開發實踐(iOS)FlutteriOS
- 後臺開發:核心技術與應用實踐 -- C++C++
- 聊天室應用開發實踐(一)
- 用 OSGi 應用程式開發和工作的最佳實踐
- 後臺開發-核心技術與應用實踐--TCP協議TCP協議
- 文件驅動開發模式在 AIMS 中的應用與實踐模式AI
- Zebra 條碼印表機應用開發實踐
- [全程建模]UML應用與實踐的對話——需求中流程與用例的關係
- 用JS開發跨平臺桌面應用,從原理到實踐JS
- TypeScript 在開發應用中的實踐總結TypeScript
- DevOps最佳實踐之應用開發和部署dev
- 開發安全的ASP.NET應用程式ASP.NET
- 應用開發實踐之關係型資料庫(以MySql為例)小結資料庫MySql
- Kafka應用實踐與生態整合Kafka
- 《網路安全原理與實踐》一2.5複習題
- 基本複製應用例項(轉)
- GroovyShell 應用實踐
- 深度強化學習技術開發與應用強化學習
- 測試用例最佳實踐
- Egret應用開發實踐(03) MVC 模組化具體實現MVC
- Flink在美團的實踐與應用
- IRITA HUB的跨鏈實踐與應用
- vivo直播應用技術實踐與探索
- Docker開發例項之應用場景Docker
- Serverless 工程實踐 | Serverless 應用開發觀念的轉變Server
- H5開發在QQ錢包的應用實踐H5
- [敏捷開發實踐](2) 用於開發和維持複雜產品的敏捷開發框架Scrum敏捷框架Scrum
- ASP.NET中的AJAX應用開發總結ASP.NET
- TiDB應用實踐TiDB
- Oracle Audit 應用實踐Oracle