Microsoft Word - CH17.doc

Size: px
Start display at page:

Download "Microsoft Word - CH17.doc"

Transcription

1 17-1 學生基本資料管理系統簡介 17-2 資料庫與資料表的建立 17-3 專案程式建立說明 主題 : 學生基本資料管理系統操作講解

2 本章是以人事基本資料管理為出發點的一個系統, 目的是示範如何建立一個管理學生基本資料的簡易網站 這個範例網站的建立運用到許多 ASP.NET 功能, 匯集各種功能於一身的基礎演練, 從點的運用, 到線的建立, 最終成為面面俱到的系統, 讓您學會建構網站所需的整體技巧與思考 17-1 學生基本資料管理系統簡介 在實際進行網頁程式建立之前, 先對學生基本資料管理系統進行概念性介紹說明, 了解各個子系統功用後, 再一一說明如何建立這些功能 系統首頁 (Default.aspx) 首頁 為網站系統一開始進入的預定頁面, 在這多半是呈現一些公告事項或圖片之類的訊息 在此公告畫面是秀出傑出校友照片, 或者您也可以自行建立一些公告訊息 圖 17-1 系統首頁 17-2

3 瀏覽 (List.aspx) 瀏覽 頁面是用來顯示學生詳細基本資料, 例如 ID 姓名 性別 生日等等 它是以 GridView 表格及 SqlDataSource 控制項製作的, 提供瀏覽 分頁 編輯 更新及刪除等功能 圖 17-2 學生基本資料瀏覽新增 (InputData.aspx) 新增 頁面是用來建立學生基本資料, 利用 ASP.NET 控制項提供輸入, 然後將資料新增到資料庫之中 一旦完成輸入, 在 瀏覽 頁面就可以查到該筆學生資料 17-3

4 圖 17-3 新增基本資料照片上傳 (PhotoUpload.aspx) 上一個 新增 頁面只是單純新增文字型態之資料, 但對於學生照片則是在 照片上傳 頁面中上傳, 以 FileUpload 控制項提供上傳功能, 一次最多可上傳 10 張照片 17-4 圖 17-4 照片上傳

5 搜尋 (Search.aspx) 在前面的 瀏覽 功能中, 只提供 GridView 表格式瀏覽, 它無法提供條件式資料搜尋 而 搜尋 是以學生姓名或學號做為搜尋關鍵字, 並提供 AND 及 OR 的條件, 讓您可以迅速查詢與過濾特定學生資料 圖 17-5 學生資料搜尋帳號維護 (Accounts.aspx) 帳號維護 是針對系統操作人員, 例如系統管理員 作業人員或查詢人員, 但就是不包括一般人或學生 因為大家必須有一個基本認知, 就是任何人事基本資料, 在機關 公司或學校中, 永遠是敏感性機密資料, 唯獨相關人員可以查詢或觸碰到此系統, 其他人一律是被禁止的 所以 帳號維護 是建立可以操作此系統的帳號, 並可設定讀 寫 新增與刪除四種權限, 進一步管控不同帳號持有人, 可執行不同功能, 進而達到功能設限與安全性管理之目的 17-5

6 圖 17-6 系統操作人員帳號管理 密碼變更 密碼變更 可用來變更密碼, 只要帳號登入通過後, 進入此頁面, 輸入新密碼後, 按下 更新 按鈕, 當下次再重新登入時, 就可使用新密碼了 圖 17-7 密碼變更 17-6

7 登入 (Login.aspx) 因為人事基本資料本屬機密, 所以任何人都必須用帳號與密碼登入後才能存取此系統, 而非對一般人開放查詢與使用 資料庫有一個預設帳號 admin, 密碼亦是 admin, 您可以用這個帳號進行登入 圖 17-8 帳號登入 以上八大功能構成本 學生基本資料管理系統 之主體, 然而在實作上, 還包含資料庫建立與整合性設計, 後續會一一說明 17-2 資料庫與資料表的建立 由於本專案資料是保存 SQL Server 之中, 所以必須在 SQL Server 中建立一個名為 School 的資料庫, 然後 ASP.NET 專案程式資料之存取, 便是以 School 資料庫中資料表為依據, 進行讀取 寫入 新增 刪除等動作 而 School 資料庫包含兩個資料表 : Students UserAccount,Students 資料表是用來保存學生人事基本資料, 而 UserAccount 資料表是用來保存系統操作人員之帳號 密碼與權限 建立步驟如下 : 17-7

8 建立 School 資料庫 在 SQL Server 管理工具點選 資料庫 新增資料庫 輸入資料庫名稱 School, 按 確定 結束 圖 17-9 新增 School 資料庫新增 Students 資料表及欄位定義在 School 資料庫的 資料表 按滑鼠右鍵 點選 新增資料表, 依下圖定義資料表欄位 Schema, 設定 ID 欄位為主索引鍵, 完成後以 Students 命名儲存 圖 建立 Students 資料表及欄位定義 17-8

9 新增 UserAccount 資料表及欄位定義在 School 資料庫的 資料表 按滑鼠右鍵 點選 新增資料表, 依下圖定義資料表欄位 Schema, 設定 ID 欄位為主索引鍵, 完成後以 UserAccount 命名儲存 圖 建立 UserAccount 資料表及欄位定義 17-9

10 17-3 專案程式建立說明 學生基本資料管理系統之專案名稱為 Students, 下圖為專案程式之組成畫面, 兩旁以文字標示說明其功能 CSS 樣式 網站圖片 jquery 縣市資料全域應用程式類別資料瀏覽主版頁面密碼變更搜尋資料 學生照片帳號管理系統首頁新增資料登入功能照片上傳網站組態檔 圖 系統專案程式 以下分 10 個小節說明各程式之建立 主版頁面的運用 主版頁面 (Master Page) 是 ASP.NET 內建的一種網站樣板, 用來建立一致性的外觀, 或者是功能性選單 主版頁面類似中間挖了洞的面具, 中間就可讓每個內容網頁套用, 以下是主版頁面的原始結構 17-10

11 圖 主版頁面之結構上圖中比較特別的是 及 兩部分, 這兩個部分會與套用主版頁面的.aspx 內容頁結合,<asp:ContentPlaceHolder> </asp:contentplaceholder> 中的區塊會動態生成內容, 主要是給內容頁用的 而主版頁面設計方式其實和一般網頁設計幾乎相同, 請網頁美術設計人員設計好網站版型後 ( 如專案中的 HtmlTemplate.htm 原始版型 ), 再放進 MasterPage.master 中, 並記得加入 <asp:contentplaceholder /> 兩個區塊, 以下是 MasterPage.master 畫面及宣告 : 圖 主版頁面版型 17-11

12 Master Language="VB" CodeFile="MasterPage.master.vb" Inherits="MasterPage" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " <html xmlns=" <head> <title></title> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <meta name="keywords" content="" /> <meta name="description" content="" /> <link href="css/style.css" rel="stylesheet" type="text/css" /> <script src="scripts/jquery min.js" type="text/javascript"></script> <asp:contentplaceholder ID="head" runat="server"> </asp:contentplaceholder> </head> <body> <form id="form1" runat="server"> <div id="header"> </div> <h1> 學生基本資料管理系統 </h1> <div id="menu"> <ul> <li class="first"><a href="default.aspx"> 首頁 </a></li> <li><a href="list.aspx"> 瀏覽 </a></li> <li><a href="inputdata.aspx"> 新增 </a></li> <li><a href="photoupload.aspx"> 照片上傳 </a></li> <li><a href="search.aspx"> 搜尋 </a></li> <li><a href="accounts.aspx"> 帳號維護 </a></li> <li><a href="password.aspx"> 密碼變更 </a></li> <li> </li> <asp:loginstatus ID="LoginStatus1" runat="server" /> <li> <asp:loginname ID="LoginName1" runat="server" FormatString=" 使用者 :{0}" /> </ul> </div> </li> <div id="page"> <div id="content"> </div> </div> <asp:contentplaceholder ID="ContentPlaceHolder1" runat="server"> </asp:contentplaceholder> 17-12

13 <div id="footer"> <p> 本系統由聖殿祭司製作 </p> </div> </form> </body> </html> 首頁程式的建立 首頁是一進入系統時所顯示的文字或照片公告, 主要是給系統操作人員觀看 請參考 Default.aspx 程式, 建立步驟如下 : 加入 Default.aspx 頁面在專案中加入 Default.asp 程式 勾選右下角之 選擇主版頁面 按下 新增 按鈕 選擇 MasterPage.master, 這樣 Default.aspx 即可套用主版頁面 圖 選擇套用主版頁面 17-13

14 在 head 的 <asp:content /> 區塊加入參考在 Default.aspx 的 head 之 <asp:content /> 區塊加入 CSS 及 jquery 參考 : <asp:content ID="Content1" ContentPlaceHolderID="head" runat="server"> <link href="css/ui-lightness/jquery-ui custom.css" rel="stylesheet" type="text/css" /> <script src="scripts/jquery-ui custom.min.js" type="text/javascript"></script> </asp:content> 在內容的 <asp:content /> 區塊加入 jquery UI 的 Tab 在內容的 <asp:content /> 區塊加入 jquery UI 的四個 Tab 頁籤宣告 : <asp:content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server"> <p> 傑出交友照片公告 </p> <div id="tabs"> <ul> <li><a href="#tabs-1"> 林志玲 </a></li> </ul> <li><a href="#tabs-2"> 劉德華 </a></li> <li><a href="#tabs-3"> 黃曉明 </a></li> <li><a href="#tabs-4"> 系統說明 </a></li> <div id="tabs-1"> <p> <img src="photos/ 林志玲.jpg" /> </p> </div> <div id="tabs-2"> <p> <img src="photos/ 劉德華.jpg" /> </p> </div> <div id="tabs-3"> <p> <img src="photos/ 黃曉明.jpg" /> </p> </div> <div id="tabs-4"> <p> 事項一 : 本系統只限特定人員操作 17-14

15 </div> </p> <p> 事項二 : 因帳號權限的不同, 所能操作的功能也不同 </p> </div> <script type="text/javascript"> $("#tabs").tabs() </script> </asp:content> jquery UI 的 Tab 語法 程式說明以上 <div id="tabs"> </div> 區段是四個 Tab 頁籤內容, 而最後 $("#tabs").tabs() 語法則是用來指示 jquery UI 將這幾個內容變成 Tab 頁籤型式 而 jquery UI 的 Tab 因為是在網頁瀏覽執行時, 才會透過 JavaScript 去變更成 Tab, 所以在 VS 2010 中無法事呈現正確的設計畫面, 請不用介意 瀏覽程式的建立 瀏覽程式是用來瀏覽學生基本資料, 以 GridView 顯示所有學生資料 請參考 List.aspx 程式, 建立步驟如下 : 加入 List.aspx 頁面在專案中加入 List.aspx 程式 勾選右下角之 選擇主版頁面 按下 新增 按鈕 選擇 MasterPage.master 套用主版頁面 建立 GridView 及 SqlDataSource 控制項在 List.aspx 中加入 GridView 及 SqlDataSource 控制項,SqlDataSource 控制項讀取之資料來源為 Students 資料表, 然後設定 GridView 資料來源為 SqlDataSource 控制項 將 GridView 欄位轉換成樣板點選 GridView 智慧標籤的 編輯資料行 將左下角所有欄位轉換為 TemplateFIeld 17-15

16 圖 將欄位轉換為 TemplateField 設定照片欄位因為照片預設是以文字顯示 Url 網址文字, 但我們希望顯示的是圖片, 故移除最後一個照片欄位 重新加入一個 ImageField 欄位, 並設定以下屬性, 這樣就能夠顯示照片, 而非照片網址的文字 屬性 設定 DataImageUrlField DataImageUrlFormat ControlStyle 的 Height ControlStyle 的 Width HeaderText PhotoUrl Photos/{0} 30px 30px 照片 編輯欄位控制項之繫結與事件程式但 List.aspx 程式的 GridView 控制項, 在編輯模式時, 血型 身高 體重與縣市四個欄位將改為 DropDownList 選取, 同時性別的 True 與 False 資料也需轉換為男或女, 以提供較為人性化輸入, 但這就必須客製化設定欄位控制項之繫結與事件程式 17-16

17 圖 欄位控制項之繫結與事件程式設定設定血型欄位之 Bind 資料繫結屬性點選 GridView 控制項智慧標籤的 編輯樣板 選取 Column[5]- 血型的 EditItemTemplate 移除 TextBox 控制項 加入 DropDownList 控制項, 並命名為 dwnblood 點選其智慧標籤的 編輯項目 加入 A B AB O RH 五個項目, 同時設定每個項目的 Text 及 Value 屬性 點選智慧標籤的 DataBindings 資料繫結 勾選左下方之 顯示所有屬性 設定 ToolTip 屬性自訂繫結為 Bind("Blood"), 如此 DropDownList 選取變更時就會自動繫結回寫到資料庫 圖 設定血型 DropDownList 之 Bind 資料繫結 17-17

18 血型 DropDownList 控制項選取變更之事件程式 雙擊血型 DropDownList 控制項, 加入選取變更時之程式, 將選取值同時設定到 ToolTip 屬性 : 01 'ToolTips 屬性會 Bind("Blood"), 故選擇索引改變時, 02 ' 設定 ToolTip 內容為選取文字, 然後自動繫結回寫資料庫 03 Protected Sub dwnblood_selectedindexchanged(byval sender As Object, ByVal e As System.EventArgs) 04 Dim dwnblood As DropDownList = CType(sender, DropDownList) 05 If dwnblood.selectedvalue <> 0 Then 06 dwnblood.tooltip = dwnblood.selecteditem.text 07 End If 08 End Sub 設定身高 體重與縣市欄位之 Bind 繫結屬性及選取事件 身高 體重與縣市欄位 DropDownList 控制項之 Bind 資料繫結, 也是透過 ToolTip 屬性來進行, 請仿照血型之 DropDownList 控制項的設定方式 至於 DropDownList 的選取項目變更時之事件程式如下 : 01 'ToolTips 屬性會 Bind("Height"), 故選擇索引改變時, 02 ' 設定 ToolTip 內容為選取文字, 然後自動繫結回寫資料庫 03 Protected Sub dwnheight_selectedindexchanged(byval sender As Object, ByVal e As System.EventArgs) 04 Dim dwnheight = CType(sender, DropDownList) 05 dwnheight.tooltip = dwnheight.selecteditem.text 06 End Sub 'ToolTips 屬性會 Bind("Weight"), 故選擇索引改變時, 09 ' 設定 ToolTip 內容為選取文字, 然後自動繫結回寫資料庫 10 Protected Sub dwnweight_selectedindexchanged(byval sender As Object, ByVal e As System.EventArgs) 11 Dim dwnweight = CType(sender, DropDownList) 12 dwnweight.tooltip = dwnweight.selecteditem.text 13 End Sub 'ToolTips 屬性會 Bind("City"), 故選擇索引改變時, 16 ' 設定 ToolTip 內容為選取文字, 然後自動繫結回寫資料庫 17 Protected Sub dwncity_selectedindexchanged(byval sender As Object, ByVal e As System.EventArgs) 18 Dim dwncity = CType(sender, DropDownList) 19 dwncity.tooltip = dwncity.selecteditem.text 20 End Sub 17-18

19 設定一般事件程式 最後加入幾個一般事件程式, 事件功用則註解在程式中 : 01 Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load 02 If Not Session("Permission").ToString().Contains("R") Then 03 Response.Redirect("Message.aspx?Reason= 必須具備讀取權限 ") 04 End If 05 End Sub ' 如果沒有編輯或刪除權限, 則將對應的 Button 按鈕隱藏 08 Protected Sub gvstudents_databound(byval sender As Object, ByVal e As System.EventArgs) Handles gvstudents.databound 09 Dim permission = Session("Permission").ToString() 10 If Not permission.contains("u") Or Not permission.contains("d") Then 11 Dim btnedit As Button 12 Dim btndelete As Button 13 For i = 0 To gvstudents.rows.count If Not permission.contains("u") Then 15 btnedit = CType(gvStudents.Rows(i).Cells(0).Controls(1), Button) ' 編輯按鈕 16 If btnedit.text = " 編輯 " Then 17 btnedit.enabled = False 18 End If 19 End If 20 If Not permission.contains("d") Then 21 btndelete = CType(gvStudents.Rows(i).Cells(0).Controls(3), Button) ' 刪除按鈕 22 If btndelete.text = " 刪除 " Then 23 btndelete.enabled = False 24 End If 25 End If 26 Next 27 End If 28 End Sub ' 將 Gender 性別的 Boolean, 由 True 或 False 轉換成男或女 31 Protected Sub gvstudents_rowdatabound(byval sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles gvstudents.rowdatabound 32 If e.row.rowtype = DataControlRowType.DataRow Then 33 Dim view As DataRowView = CType(e.Row.DataItem, DataRowView) 34 If view IsNot Nothing Then 17-19

20 35 ' 取得 Gender 欄位資料 36 If Not String.IsNullOrEmpty(view.Item(2)) Then 37 Dim gender As Boolean = view.item(2) 38 Dim txtgender = CType(e.Row.Cells(3).FindControl("txtGender"), Label) 39 If txtgender IsNot Nothing Then 40 If gender = True Then 41 txtgender.text = " 男 " 42 Else 43 txtgender.text = " 女 " 44 End If 45 End If 46 End If 47 End If 48 End If 49 End Sub ' 編輯模式時, 設定欄位的寬度 52 Protected Sub gvstudents_rowediting(byval sender As Object, ByVal e As System.Web.UI.WebControls.GridViewEditEventArgs) Handles gvstudents.rowediting 53 gvstudents.columns(2).controlstyle.width = gvstudents.columns(4).controlstyle.width = gvstudents.columns(6).controlstyle.width = gvstudents.columns(7).controlstyle.width = gvstudents.columns(10).controlstyle.width = End Sub ' 替身高的 DropDownList 加入項目 61 Protected Sub dwnheight_load(byval sender As Object, ByVal e As System.EventArgs) 62 Dim dwnheight = CType(sender, DropDownList) 63 dwnheight.items.add("==") 64 For i = 155 To dwnheight.items.add(i) 66 Next 67 End Sub ' 替體重的 DropDownList 加入項目 70 Protected Sub dwnweight_load(byval sender As Object, ByVal e As System.EventArgs) 71 Dim dwnweight = CType(sender, DropDownList) 72 dwnweight.items.add("==") 73 For i = 50 To dwnweight.items.add(i) 75 Next 76 End Sub 17-20

21 設定編輯模式下生日 TextBox 使用 jquery UI 的日曆控制項以下透過 jquery UI 將編輯模式下的生日 TextBox 改造為日曆控制項 : <asp:content ID="Content1" ContentPlaceHolderID="head" runat="server"> <script src="scripts/jquery-ui custom.min.js" type="text/javascript"></script> <link href="css/ui-lightness/jquery-ui custom.css" rel="stylesheet" type="text/css" />... <script type="text/javascript"> $(function () { $("input[id$=txtbirthday]").datepicker({ dateformat: 'yy/mm/dd' }); 略 </script> </asp:content> 新增資料程式的建立 新增程式是用來新增學生資料到 Students 資料表 請參考 InputData.aspx 程式, 建立步驟如下 : 建立 DetailsView 及 SqlDataSource 控制項建立 DetailsView 及 SqlDataSource 控制項, 設定 DetailsView 資料來源為 SqlDataSource, 將 DetailsView 的 DefaultMode 屬性設為 Insert 設定 SqlDataSource 之資料來源點選 SqlDataSource 控制項智慧標籤的 設定資料來源 勾選 * 星號讀取所有欄位 點選 進階 按鈕 將 產生 Insert Update 和 Delete 陳述式 打勾 將欄位轉換為 TemplateField 欄位因 DetailsView 多數欄位在編輯模式為 TextBox 控制項, 在此欲將某些欄位的 TextBox 控制項以 RadioButtonList 或 DropDownList 控制項取代, 作為輸入或選取之用, 故點選 DetailsView 控制項智慧標籤的 編輯欄位 將左下角所有欄位轉換為 TemplateField 欄位, 唯除 新增 插入 取消 欄位保持原狀 17-21

22 於樣板中建立不同型態之輸入控制項點選 DetailsView 智慧標籤的 編輯様板, 於每個欄位的 InsertItemTemplate 建立對應的輸入控制項, 以取代原有的 TextBox 控制項 圖 建立替代輸入控制項 圖 各欄位對應之替代控制項 建立資料新增及輸入驗證之程式 最後建立資料新增及輸入驗證之程式 : 01 Dim InputMsg As String = "" ' 欄位輸入驗證之訊息 Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load 04 ' 檢查是否具有學生資料讀取權限 05 Dim permission As String = Session("Permission") 06 If Not (permission.contains("r") And permission.contains("c")) Then 07 Response.Redirect("Message.aspx?Reason= 必須同時具備讀取與新增權限 ")

23 08 End If ' 產生控制項資料 11 Dim dwnheight As DropDownList = dvstudent.findcontrol("dwnheight") 12 Dim dwnweight As DropDownList = dvstudent.findcontrol("dwnweight") 13 dwnheight.items.add("= 請選擇 =") 14 For i = 155 To dwnheight.items.add(i) 16 Next 17 dwnweight.items.add("= 請選擇 =") 18 For i = 50 To dwnweight.items.add(i) 20 Next Dim rdo = CType(dvStudent.FindControl("rdoGender"), RadioButtonList) 23 End Sub Protected Sub dwncity_selectedindexchanged(byval sender As Object, ByVal e As System.EventArgs) 26 'ToolTip 屬性與資料來源 City 欄位是 Bind 雙向繫結 27 ' 故將 DropDownList 選取的縣市指定給 ToolTip 屬性 28 ' 在 Insert 到資料庫時, 它會自動寫入到 City 欄位 29 Dim dwncity As DropDownList = CType(dvStudent.FindControl("dwnCity"), DropDownList) 30 dwncity.tooltip = dwncity.selecteditem.text 31 End Sub Protected Sub dvstudent_iteminserted(byval sender As Object, ByVal e As System.Web.UI.WebControls.DetailsViewInsertedEventArgs) Handles dvstudent.iteminserted 34 If e.affectedrows > 0 Then 35 txtmsg.text = " 新增資料成功!" 36 Else 37 txtmsg.text = " 新增資料失敗!" 38 End If 39 End Sub Protected Sub dvstudent_iteminserting(byval sender As Object, ByVal e As System.Web.UI.WebControls.DetailsViewInsertEventArgs) Handles dvstudent.iteminserting 42 'Dim txtbirthday = CType(dvStudent.FindControl("txtBirthday"), TextBox) 43 ' 檢查是否有新增資料之權限 44 If Not Session("Permission").ToString().Contains("C") Then 45 e.cancel = True ' 若沒有新增權限, 則取消插入動作 46 Else 17-23

24 ' 新增資料前, 進行輸入資料之檢查 48 If CheckInput() = False Then 49 txtmsg.text = "<ul>" & InputMsg & "</ul>" 50 e.cancel = True 51 End If 52 End If 53 End Sub Protected Function CheckInput() As Boolean 56 'Input 輸入合法性檢查, 預設為 True 57 Dim status As Boolean = True ' 檢查 ID 帳號不得為空白 60 If String.IsNullOrEmpty(CType(dvStudent.FindControl("txtID"), TextBox).Text.Trim()) Then 61 status = False 62 InputMsg &= "<li>* 請輸入 ID 帳號 </li>" 63 End If 64 ' 檢查姓名不得為空白 65 If String.IsNullOrEmpty(CType(dvStudent.FindControl("txtName"), TextBox).Text.Trim()) Then 66 status = False 67 InputMsg &= "<li>* 請輸入姓名 </li>" 68 End If ' 檢查性別是否有選擇 71 Dim rdogender = CType(dvStudent.FindControl("rdoGender"), RadioButtonList) 72 If rdogender.selectedindex = -1 Then 73 status = False 74 InputMsg &= "<li>* 請輸入性別 </li>" 75 End If ' 檢查血型是否有選擇 78 Dim rdoblood = CType(dvStudent.FindControl("rdoBlood"), RadioButtonList) 79 If rdoblood.selectedindex = -1 Then 80 status = False 81 InputMsg &= "<li>* 請選擇血型 </li>" 82 End If ' 身高 85 If CType(dvStudent.FindControl("dwnHeight"), DropDownList).SelectedIndex = 0 Then 86 status = False 87 InputMsg &= "<li>* 請輸入身高 </li>" 88 End If

25 89 90 ' 體重 91 If CType(dvStudent.FindControl("dwnWeight"), DropDownList).SelectedIndex = 0 Then 92 status = False 93 InputMsg &= "<li>* 請輸入體重 </li>" 94 End If ' 縣市 97 If CType(dvStudent.FindControl("dwnCity"), DropDownList).SelectedIndex = 0 Then 98 status = False 99 InputMsg &= "<li>* 請輸入縣市 </li>" 100 End If ' 檢查地址不得為空白 104 If String.IsNullOrEmpty(CType(dvStudent.FindControl("txtAddress"), TextBox).Text.Trim()) Then 105 status = False 106 InputMsg &= "<li>* 請輸入地址 </li>" 107 End If ' 檢查電話不得為空白 110 If String.IsNullOrEmpty(CType(dvStudent.FindControl("txtAddress"), TextBox).Text.Trim()) Then 111 status = False 112 InputMsg &= "<li>* 請輸入電話 </li>" 113 End If Return status 116 End Function Protected Sub dwnheight_selectedindexchanged(byval sender As Object, ByVal e As System.EventArgs) 119 Dim dwnheight = CType(sender, DropDownList) 120 dwnheight.tooltip = dwnheight.selecteditem.text 121 End Sub Protected Sub dwnweight_selectedindexchanged(byval sender As Object, ByVal e As System.EventArgs) 124 Dim dwnweight = CType(sender, DropDownList) 125 dwnweight.tooltip = dwnweight.selecteditem.text 126 End Sub

26 128 Protected Sub dwncity_selectedindexchanged1(byval sender As Object, ByVal e As System.EventArgs) 129 Dim dwncity = CType(sender, DropDownList) 130 dwncity.tooltip = dwncity.selecteditem.text 131 End Sub ' 性別選取時, 設定選取值到 ToolTip 屬性 134 Protected Sub rdogender_selectedindexchanged(byval sender As Object, ByVal e As System.EventArgs) 135 Dim rdogender = CType(dvStudent.FindControl("rdoGender"), RadioButtonList) 136 rdogender.tooltip = IIf(rdoGender.SelectedItem.Text = " 男 ", True, False) 137 End Sub Protected Sub rdoblood_selectedindexchanged(byval sender As Object, ByVal e As System.EventArgs) 140 Dim rdoblood = CType(dvStudent.FindControl("rdoBlood"), RadioButtonList) 141 rdoblood.tooltip = rdoblood.selecteditem.text 142 End Sub 照片上傳程式的建立 照片上傳程式是用來上傳學生照片到網站, 在此是透過 FileUpload 控制項提供上傳功能, 並限制上傳 jpg gif png 三種格式照片 請參考 PhotoUpload.aspx 程式, 建立步驟如下 : 建立 FileUpload 檔案上傳控制項從工具箱拖曳建立十個 FileUpload 控制項, 以便可以一次上傳十個檔案 17-26

導讀 ASP.NET HTML ASP 第一篇 基礎篇第 1 章 認識 ASP.NET ASP.NET ASP.NET ASP.NET ASP.NET 第 2 章 認識 Visual Studio 20 開發環境 Visual Studio 20 Visual Studio 20 第二篇 C# 程式

導讀 ASP.NET HTML ASP 第一篇 基礎篇第 1 章 認識 ASP.NET ASP.NET ASP.NET ASP.NET ASP.NET 第 2 章 認識 Visual Studio 20 開發環境 Visual Studio 20 Visual Studio 20 第二篇 C# 程式 導讀 ASP.NET HTML ASP 第一篇 基礎篇第 1 章 認識 ASP.NET ASP.NET ASP.NET ASP.NET ASP.NET 第 2 章 認識 Visual Studio 20 開發環境 Visual Studio 20 Visual Studio 20 第二篇 C# 程式語言篇第 3 章 C# 程式語言基礎 C# C# 3.0 var 第 4 章 基本資料處理 C# x

More information

Microsoft Word - Ch06.docx

Microsoft Word - Ch06.docx Chapter 6-1 6-2 6-2 l ASP.NET 6-1 (theme) ASP.NET (skin).skin ButtonLabelHyperLink (cascading style sheet).css TreeView 1. 2. (page theme) (global theme) IIS l 6-3 6-1-1 (page theme) (global theme) App_Themes

More information

05 01 accordion UI containers 03 Accordion accordion UI accordion 54

05 01 accordion UI containers 03 Accordion accordion UI accordion 54 jquery UI plugin Accordion 05 01 accordion UI containers 03 Accordion accordion UI accordion 54 05 jquery UI plugin 3-1

More information

IsPostBack 2

IsPostBack 2 5 IsPostBack 2 TextBox 3 TextBox TextBox 4 TextBox TextBox 1 2 5 TextBox Columns MaxLength ReadOnly Rows Text TextMode TextMode MultiLine TextMode MultiLine True False TextMode MultiLine Password MulitLine

More information

5-1 nav css 5-2

5-1 nav css 5-2 5 HTML CSS HTML CSS Ê Ê Ê Ê 5-1 nav css 5-2 5-1 5 5-1-1 5-01 css images 01 index.html 02 5-3 style.css css 03 CH5/5-01/images 04 images index.html style.css 05

More information

投影片 1

投影片 1 資料庫管理程式 ( 補充教材 -Part2) 使用 ADO.NET 連結資料庫 ( 自行撰寫程式碼 以實現新增 刪除 修改等功能 ) Private Sub InsertButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles InsertButton.Click ' 宣告相關的 Connection

More information

untitled

untitled PowerBuilder Tips 利 PB11 Web Service 年度 2 PB Tips PB9 EAServer 5 web service PB9 EAServer 5 了 便 web service 來說 PB9 web service 力 9 PB11 release PB11 web service 力更 令.NET web service PB NVO 論 不 PB 來說 說

More information

Chapter V.S. PC

Chapter V.S. PC Chapter 14 14-1 V.S. PC 14-2 14-3 14-4 14-1 V.S. PC PC PC Yahoo! PC (https://tw.yahoo.com/) Yahoo! (https:// tw.mobi.yahoo.com/) Yahoo! a b a PC b PC PC Flash HTML5 CSS3 PC 14-2 14-3 PC PC Yahoo! PC https://tw.yahoo.com/

More information

untitled

untitled Data Source 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 8-1 Data Source 8-2 Data Source 8-3 Data Source 8-4 Data Source 8-5 DataSourceID 8-6 DataSourceMode 8-7 DataSource 8-8 8-9 Parameter Direction

More information

輕鬆學 Dreamweaver CS5 網頁設計..\Example\Ch0\ \.html..\example\ch0\ \mouse.txt..\example\ch0\ \ _Ok.html 學習重點 JavaScript 複製程式碼 mouse.txt Ctrl+C Ctrl+C 0-4

輕鬆學 Dreamweaver CS5 網頁設計..\Example\Ch0\ \.html..\example\ch0\ \mouse.txt..\example\ch0\ \ _Ok.html 學習重點 JavaScript 複製程式碼 mouse.txt Ctrl+C Ctrl+C 0-4 JAVA Extension 0..\Example\Ch0\ \ T.html..\Example\Ch0\ \ T.txt T.txt..\Example\Ch0\ \ T_Ok.html 提示 :. Marquee Marquee Font Color #FFFFFF BG Color #867bf Width 90 Height 50. T.txt Ctrl+C your scrolling

More information

關於本書 Part 3 CSS XHTML Ajax Part 4 HTML 5 API JavaScript HTML 5 API Canvas API ( ) Video/Audio API ( ) Drag and Drop API ( ) Geolocation API ( ) Part 5

關於本書 Part 3 CSS XHTML Ajax Part 4 HTML 5 API JavaScript HTML 5 API Canvas API ( ) Video/Audio API ( ) Drag and Drop API ( ) Geolocation API ( ) Part 5 網頁程式設計 HTML JavaScript CSS HTML JavaScript CSS HTML 5 JavaScript JavaScript HTML 5 API CSS CSS Part 1 HTML HTML 5 API HTML 5 Apple QuickTime Adobe Flash RealPlayer Ajax XMLHttpRequest HTML 4.01 HTML 5

More information

untitled

untitled 12-1 -2 VC# Web Blog 12-1 -1-1 12-1.1-1 C:\ ChartModuleSample_CSharp\Application\2001\ Files\ 4096 KB 120 Web.Config httpruntime maxrequestlength executiontimeout 12-2

More information

Microsoft PowerPoint - VB14.ppt

Microsoft PowerPoint - VB14.ppt VB 列表盒 LISTBOX 應用 資科系 林偉川 執行畫面 1 2 1 重要屬性 LISTBOX 物件 (VB6) 新增至 LISTBOX 物件中 ADDITEM 自 LISTBOX 物件中刪除選取物件 REMOVEITEM 自 LISTBOX 物件中取出選取物件 ListIndex 顯示 LISTBOX 物件中紀錄個數 Listcount 3 LISTBOX 物件 (VB.NET) 重要屬性 新增至

More information

關於本書 l 3 PhoneGap Appcelerator Titanium Sencha Touch (wrapper framework) Native App PhoneGap Build Native App Hybrid App Java Objective-C Android SDK

關於本書 l 3 PhoneGap Appcelerator Titanium Sencha Touch (wrapper framework) Native App PhoneGap Build Native App Hybrid App Java Objective-C Android SDK 2 l 跨裝置網頁設計 Android ios Windows 8 BlackBerry OS Android HTML 5 HTML 5 HTML 4.01 HTML 5 CSS 3 CSS 3 CSS 2.01 CSS 3 2D/3D PC JavaScript

More information

1 1 大概思路 创建 WebAPI 创建 CrossMainController 并编写 Nuget 安装 microsoft.aspnet.webapi.cors 跨域设置路由 编写 Jquery EasyUI 界面 运行效果 2 创建 WebAPI 创建 WebAPI, 新建 -> 项目 ->

1 1 大概思路 创建 WebAPI 创建 CrossMainController 并编写 Nuget 安装 microsoft.aspnet.webapi.cors 跨域设置路由 编写 Jquery EasyUI 界面 运行效果 2 创建 WebAPI 创建 WebAPI, 新建 -> 项目 -> 目录 1 大概思路... 1 2 创建 WebAPI... 1 3 创建 CrossMainController 并编写... 1 4 Nuget 安装 microsoft.aspnet.webapi.cors... 4 5 跨域设置路由... 4 6 编写 Jquery EasyUI 界面... 5 7 运行效果... 7 8 总结... 7 1 1 大概思路 创建 WebAPI 创建 CrossMainController

More information

主程式 : public class Main3Activity extends AppCompatActivity { ListView listview; // 先整理資料來源,listitem.xml 需要傳入三種資料 : 圖片 狗狗名字 狗狗生日 // 狗狗圖片 int[] pic =new

主程式 : public class Main3Activity extends AppCompatActivity { ListView listview; // 先整理資料來源,listitem.xml 需要傳入三種資料 : 圖片 狗狗名字 狗狗生日 // 狗狗圖片 int[] pic =new ListView 自訂排版 主程式 : public class Main3Activity extends AppCompatActivity { ListView listview; // 先整理資料來源,listitem.xml 需要傳入三種資料 : 圖片 狗狗名字 狗狗生日 // 狗狗圖片 int[] pic =new int[]{r.drawable.dog1, R.drawable.dog2,

More information

互動網頁技術系列課程 HTML與CSS網站基礎設計 [12pt]

互動網頁技術系列課程 HTML與CSS網站基礎設計 [12pt] HTML CSS / 2011 HTML CSS 1/ 47 1 2 HTML 3 4 HTML 5 5 : CSS 6 CSS 7 HTML CSS 2/ 47 HTML CSS 3/ 47 ( BOM) UTF-8 Notepad++ (Winodws), Fraise/Smultron (Mac), VIM ( ) HTML CSS 4/ 47 UTF-8? UTF-8 (unicode),

More information

untitled

untitled 1 .NET 利 [] [] 來 說 切 切 理 [] [ ] 來 說 拉 類 類 [] [ ] 列 連 Web 行流 來 了 不 不 不 流 立 行 Page 類 Load 理 Response 類 Write 料 Redirect URL Response.Write("!! ives!!"); Response.Redirect("WebForm2.aspx"); (1) (2) Web Form

More information

chapter 2 HTML5 目錄iii HTML HTML HTML HTML HTML canvas

chapter 2 HTML5 目錄iii HTML HTML HTML HTML HTML canvas Contents 目錄 chapter 1 1-1... 1-2 1-2... 1-3 HTML5... 1-3... 1-5 1-3... 1-9 Web Storage... 1-9... 1-10 1-4 HTML5... 1-14... 1-14... 1-15 HTML5... 1-15... 1-15... 1-16 1-5... 1-18 Apps... 1-18 HTML5 Cache

More information

Chapter 16 集合

Chapter 16 集合 Chapter 16 集合 20 ArrayList StringCollection 16 本章學習目標 : ArrayList ArrayList Array StringCollection 16-1 21 10-3-8 System.Array Clear Clear 16-1 Clear System.Array Microsoft System.Collection IList 542

More information

Microsoft Word PHPCh15.docx

Microsoft Word PHPCh15.docx Chapter 10-1 jquery Mobile 10-2 jquery Mobile 10-3 10-4 10-5 10-6 10-7 10-8 10-9 10-10 10-11 10-2 l PHP & MySQL 10-1 jquery Mobile PO PC (mobile website) Yahoo! PC (http://tw.yahoo.com/) Yahoo! (http://tw.yahoo.com/mobile/)

More information

投影片 1

投影片 1 計算機程式及實習 期末報告 題目 : 六宿炒翻天 班級 : 奈米一乙姓名 : 陳洋翼學號 :4A514050 老師 : 謝慶存 程式說明 設計結帳系統, 選擇數量後, 在按下計算, 將會顯示總金額 若是老人或小孩, 將可享 8 折或 9 折的優惠 程式畫面 填選數量 在火腿蛋炒飯的數量選擇 1, 並按下計算, 可得總金額 50 元 程式畫面 打折 填選完後, 若客人是小孩或老人, 選擇欲打折項目,

More information

bootstrap - 2

bootstrap - 2 RITA TEACHING Bootstra p ENTER bootstrap - 2 bootstrap - 3 bootstrap 101 Template

More information

星星排列 _for loop Protected Sub Page_Load(ByVal sender As Object, ByVal e As Dim h As Integer = 7 'h 為變數 ' Dim i, j As Integer For i = 1 To h

星星排列 _for loop Protected Sub Page_Load(ByVal sender As Object, ByVal e As Dim h As Integer = 7 'h 為變數 ' Dim i, j As Integer For i = 1 To h 資訊系統與實習 製作 : 林郁君 一 2009.09.28 9X9 'button 被按下後 ' Dim i, j As Integer For i = 1 To 9 'i 從 1 到 9' For j = 1 To 9 'j 從 1 到 9' If j * i < 10 Then ' 如果 j 乘上 i 是為個位數 ' Response.Write(i & "*" & j & " =" & i *

More information

Visual Basic D 3D

Visual Basic D 3D Visual Basic 2008 2D 3D 6-1 6-1 - 6-2 - 06 6-2 STEP 1 5-2 (1) STEP 2 5-3 (2) - 6-3 - Visual Basic 2008 2D 3D STEP 3 User1 6-4 (3) STEP 4 User1 6-5 (4) - 6-4 - 06 STEP 5 6-6 (5) 6-3 6-3-1 (LoginForm) PictureBox1

More information

封面-12

封面-12 第十二章 701Client TECHNOLOGY CO.,LTD. 701Client 701Server 701Client "701Client", 12-1 :supervisor :supervisor : 1. : 00~99 100 2. : 00~63 ( 63 / / ) 3. : 18 9 4. : 18 9 5. 12-2 TECHNOLOGY CO.,LTD. 701Client

More information

The golden pins of the PCI card can be oxidized after months or years

The golden pins of the PCI card can be oxidized after months or years Q. 如何在 LabWindows/CVI 編譯 DAQ Card 程式? A: 請參考至下列步驟 : 步驟 1: 安裝驅動程式 1. 安裝 UniDAQ 驅動程式 UniDAQ 驅動程式下載位置 : CD:\NAPDOS\PCI\UniDAQ\DLL\Driver\ ftp://ftp.icpdas.com/pub/cd/iocard/pci/napdos/pci/unidaq/dll/driver/

More information

Microsoft PowerPoint - Ch00-4-XHTML.ppt [相容模式]

Microsoft PowerPoint - Ch00-4-XHTML.ppt [相容模式] Chapter 0-4 (XHTML) 陈瑞奇 (J.C. Chen) 亚洲大学资讯工程学系 多媒体网站技术应用 整合性课程 IE, Firefox, Safari, Opera, Chrome HTML/CSS DHTML/XHTML/XML JavaScript, JScript, VBScript Java Applet, ActiveX, AJAX Plug-in (eg, Flash, PDF,

More information

week06.key

week06.key 基礎網 頁設計 第六週 老師 : 蔡孟珂 大綱 HTML 標籤屬性 DOM(Document Object Model) 文件物件模型 樹的概念 CSS 撰寫與常 用語法 HTML 標籤屬性 id 唯 一值 同 一份 html 中, 標籤裡不能有重複的 id 名稱 頁底資訊 1 連結

More information

840 提示 Excel - Excel -- Excel (=) Excel ch0.xlsx H5 =D5+E5+F5+G5 (=) = - Excel 00

840 提示 Excel - Excel -- Excel (=) Excel ch0.xlsx H5 =D5+E5+F5+G5 (=) = - Excel 00 Excel - - Excel - -4-5 840 提示 Excel - Excel -- Excel (=) Excel ch0.xlsx H5 =D5+E5+F5+G5 (=) = - Excel 00 ( 0 ) 智慧標籤 相關說明提示 -5 -- Excel 4 5 6 7 8 + - * / % ^ = < >= & 9 0 (:) (,) ( ) Chapter - :,

More information

2 WF 1 T I P WF WF WF WF WF WF WF WF 2.1 WF WF WF WF WF WF

2 WF 1 T I P WF WF WF WF WF WF WF WF 2.1 WF WF WF WF WF WF Chapter 2 WF 2.1 WF 2.2 2. XAML 2. 2 WF 1 T I P WF WF WF WF WF WF WF WF 2.1 WF WF WF WF WF WF WF WF WF WF EDI API WF Visual Studio Designer 1 2.1 WF Windows Workflow Foundation 2 WF 1 WF Domain-Specific

More information

Outlook 2007 設定說明 Offic 企業郵件 / 虛擬主機郵件 / Office 365

Outlook 2007 設定說明 Offic 企業郵件 / 虛擬主機郵件 / Office 365 Outlook 2007 設定說明 OfficeMail 企業郵件 / 虛擬主機郵件 / Office 365 版權及商標聲明 Cloudmax 匯智提供用戶商務用郵件服務, 本文件由 Cloudmax 匯智製作, 用於教導用戶 進行郵件服務相關設定, 內容中所使用的郵件工具非為 Cloudamx 匯智設計及擁有, 若對 程式資訊有疑問, 請洽程式提供商 本文件所引用之各商標及商品名稱分屬其合法註冊公司所有,

More information

46 2011 11 467 數位遊戲式學習系統 7 2011 11 467 47 3 DBGameSys 48 2011 11 467 正規化資料模組 如何配置並儲存電子化資料 以 便減少資料被重覆儲存的程序 DBGameSys的主要功能模組包 學習者 審核評分模組 含 正規化資料模組 審核評分 模組 高分列表模組3大區塊 系統資料庫 在正規化資料模組的執行 高分列表模組 過程中 先要求學習者瀏覽遊戲

More information

untitled

untitled 1 LinkButton LinkButton 連 Button Text Visible Click HyperLink HyperLink 來 立 連 Text ImageUrl ( ) NavigateUrl 連 Target 連 _blank _parent frameset _search _self 連 _top 例 sample2-a1 易 連 private void Page_Load(object

More information

e01 1....5 1.1....5 1.1.1....5 1.1.2....6 1.1.3....8 1.1.4....9 1.1.5....11 1.1.6. /...16 1.1.7. /...19 1.1.8. /...21 1.1.9....24 1.1.10....24 1.1.11....28 1.1.12....36 1.1.13....45 1.1.14....48 1.1.15....50

More information

RUN_PC連載_8_.doc

RUN_PC連載_8_.doc PowerBuilder 8 (8) Web DataWindow ( ) DataWindow Web DataWindow Web DataWindow Web DataWindow PowerDynamo Web DataWindow / Web DataWindow Web DataWindow Wizard Web DataWindow Web DataWindow DataWindow

More information

untitled

untitled 1 .NET sln csproj dll cs aspx 說 料 料 利 來 料 ( 來 ) 利 [] [] 來 說 切 切 理 [] [ ] 來 說 拉 類 類 [] [ ] 列 連 Web 行流 來 了 不 不 不 流 立 行 Page 類 Load 理 Click 滑 料 Response 列 料 Response HttpResponse 類 Write 料 Redirect URL Response.Write("!!

More information

untitled

untitled 1 行 行 行 行.NET 行 行 類 來 行 行 Thread 類 行 System.Threading 來 類 Thread 類 (1) public Thread(ThreadStart start ); Name 行 IsAlive 行 行狀 Start 行 行 Suspend 行 Resume 行 行 Thread 類 (2) Sleep 行 CurrentThread 行 ThreadStart

More information

Microsoft Word - PHP7Ch01.docx

Microsoft Word - PHP7Ch01.docx PHP 01 1-6 PHP PHP HTML HTML PHP CSSJavaScript PHP PHP 1-6-1 PHP HTML PHP HTML 1. Notepad++ \ch01\hello.php 01: 02: 03: 04: 05: PHP 06:

More information

( )... 5 ( ) ( )

( )... 5 ( ) ( ) 2016 大學校院招收大陸地區學生聯合招生委員會 71005 臺南市永康區南臺街 1 號 E-mail:rusen@stust.edu.tw WEB:http://rusen.stust.edu.tw TEL:+886-6-2435163 FAX:+886-6-2435165 2 0 1 6 0 1 1 9 2016... 2... 3... 5 ( )... 5 ( )... 5 1... 6 2...

More information

Outlook 2010 設定說明 Offic 企業郵件 / 虛擬主機郵件 / Office 365

Outlook 2010 設定說明 Offic 企業郵件 / 虛擬主機郵件 / Office 365 Outlook 2010 設定說明 OfficeMail 企業郵件 / 虛擬主機郵件 / Office 365 版權及商標聲明 Cloudmax 匯智提供用戶商務用郵件服務, 本文件由 Cloudmax 匯智製作, 用於教導用戶 進行郵件服務相關設定, 內容中所使用的郵件工具非為 Cloudamx 匯智設計及擁有, 若對 程式資訊有疑問, 請洽程式提供商 本文件所引用之各商標及商品名稱分屬其合法註冊公司所有,

More information

6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM

6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM CHAPTER 6 SQL SQL SQL 6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM 3. 1986 10 ANSI SQL ANSI X3. 135-1986

More information

untitled

untitled 1 .NET 料.NET 料 料來 類.NET Data Provider SQL.NET Data Provider System.Data.SqlClient 料 MS-SQL OLE DB.NET Data Provider System.Data.OleDb 料 Dbase FoxPro Excel Access Oracle Access ODBC.NET Data Provider 料

More information

Microsoft PowerPoint - SAGE 2010

Microsoft PowerPoint - SAGE 2010 SAGE Journals Online -Communication Studies 大綱 SAGE 簡介 Communication Studies 收錄內容 SJO 平台功能介紹 首頁 瀏覽功能 檢索功能 進階服務 SAGE Content 超過 520 種人文 社會科學 理工 科技領域電子期刊 SAGE 與超過 245 個國際知名的學會合作 ( 包括 American Sociological

More information

Maasa停車場管理系統

Maasa停車場管理系統 停車 場 管理系 統 目錄 一.前言 1 1.1 系統特色 1 1.2 說明書閱讀方法 2 二.安裝流程 3 三.第一次使用 4 四.停車開單/收據 12 五.開單紀錄傳回電腦 17 六.停車場管理系統詳解 19 6.1 盤點機端 19 6.1.1 統計資料 21 6.1.2 工具箱 資料 瀏覽 22 6.1.3 工具箱 資料刪除 23 6.1.4 工具箱 補印開單 24 6.2 Pc端 25 6.2.1

More information

多層次傳銷與獎金系統

多層次傳銷與獎金系統 醒 吾 技 術 學 院 資 訊 管 理 系 ( 五 專 部 ) 九 十 六 學 年 度 畢 業 專 題 多 層 次 傳 銷 與 獎 金 系 統 組 員 : 921506122 游 濬 瑋 921506126 陳 彥 宇 921506139 林 龍 華 921506144 陳 昶 志 921506149 楊 璧 如 指 導 老 師 : 汪 淵 老 師 中 華 民 國 九 十 七 年 一 月 十 一 醒

More information

untitled

untitled ADF Web ArcGIS Server ADF GeocodeConnection control 4-2 Web ArcGIS Server Application Developer Framework (ADF).NET interop semblies.net Web ADF GIS Server 4-3 .NET ADF Web Represent the views in ArcMap

More information

Microsoft Word - 01.DOC

Microsoft Word - 01.DOC 第 1 章 JavaScript 简 介 JavaScript 是 NetScape 公 司 为 Navigator 浏 览 器 开 发 的, 是 写 在 HTML 文 件 中 的 一 种 脚 本 语 言, 能 实 现 网 页 内 容 的 交 互 显 示 当 用 户 在 客 户 端 显 示 该 网 页 时, 浏 览 器 就 会 执 行 JavaScript 程 序, 用 户 通 过 交 互 式 的

More information

Advanced PHP Programming

Advanced PHP Programming 進階網路程式設計 About last week 是否有練習 Session Question 我們使用文字方塊送出一串文字, 那要如何在送出前, 判斷使用者是否有輸入資料? (E.g. 帳號是否介於 5~10 字元 ) 另外, 之前我們在 HTML 中, 用 來設定字型的大小與顏色, 是否有可能無法滿足需求的時候呢? (E.g. 超大字體 ) What s Next HTML5 JavaScript

More information

單步除錯 (1/10) 打開 Android Studio, 點選 Start a new Android Studio project 建立專案 Application name 輸入 BMI 點下 Next 2 P a g e

單步除錯 (1/10) 打開 Android Studio, 點選 Start a new Android Studio project 建立專案 Application name 輸入 BMI 點下 Next 2 P a g e Android Studio Debugging 本篇教學除了最基本的中斷點教學之外, 還有條件式中斷的教學 條件式中斷是進階的除錯技巧, 在某些特定情況中, 我們有一個函數可能會被呼叫數次, 但是我們只希望在某種條件成立時才進行中斷, 進而觀察變數的狀態 而條件式中斷這項技巧正是符合這項需求 本教學分兩部分 單步除錯 (Page2~11, 共 10) 條件式中斷點 (Page12~17, 共 6)

More information

AutoCAD 用戶如何使用 ArchiCAD

AutoCAD 用戶如何使用 ArchiCAD AutoCAD 用戶如何使用 ArchiCAD AutoCAD用戶如何使用ArchiCAD ( 中文版 ) 由 Scott MacKenzie, Simon Gilbert, Geoffrey Moore Langdon, David Byrnes, Ralph Grabowski 編寫 龍庭資訊有限公司 1/73 - 2. 3. 4. -

More information

超連結 03 URI (Universal Resource Identifier) URI Web URL (Universal Resource Locator) URI URI :// [: ]/ [/ 2...]/

超連結 03 URI (Universal Resource Identifier) URI Web URL (Universal Resource Locator) URI URI :// [: ]/ [/ 2...]/ 網頁程式設計 3-1 URI 的類型... 超連結 (hyperlink) Web 1 1 2 按一下圖片超連結開啟所連結的網頁 2 3-2 超連結 03 URI (Universal Resource Identifier) URI Web URL (Universal Resource Locator) URI URI :// [: ]/ [/ 2...]/ http://www.lucky.com.tw:100/books/index.htm

More information

TPM BIOS Infineon TPM Smart TPM Infineon TPM Smart TPM TPM Smart TPM TPM Advanced Mode...8

TPM BIOS Infineon TPM Smart TPM Infineon TPM Smart TPM TPM Smart TPM TPM Advanced Mode...8 Smart TPM Rev. 1001 Smart TPM Ultra TPM Smart TPM TPM...3 1. BIOS... 3 2. Infineon TPM Smart TPM... 4 2.1. Infineon TPM...4 2.2. Smart TPM...4 3. TPM... 5 3.1. Smart TPM TPM...5 3.2. Advanced Mode...8

More information

投影片 1

投影片 1 1 ASP.NET 互動式網頁程式設計 ( 使用 C#) CSIE NTU 實例探討 sample3-a1 (1) 2 程式功能 建立與資料庫間的連線 程式內容 protected void Page_Load(object sender, EventArgs e) { Response.Write(" 尚未連線.."); Response.Write(" 進行連線.."); AccessDataSource

More information

CH15.indd

CH15.indd Chapter 15 Bootstrap 15-1 (RWD) 15-2 Bootstrap 15-3 15-4 15-5 CSS 15-6 15-1 (RWD) (RWD Responsive Web Design) ( ) PC W3C ( ) ( ) ( ) ( ) ( ) ( ) 15-2 15 15-2 Bootstrap Bootstrap Twitter Blueprint Twitter

More information

0 0 = 1 0 = 0 1 = = 1 1 = 0 0 = 1

0 0 = 1 0 = 0 1 = = 1 1 = 0 0 = 1 0 0 = 1 0 = 0 1 = 0 1 1 = 1 1 = 0 0 = 1 : = {0, 1} : 3 (,, ) = + (,, ) = + + (, ) = + (,,, ) = ( + )( + ) + ( + )( + ) + = + = = + + = + = ( + ) + = + ( + ) () = () ( + ) = + + = ( + )( + ) + = = + 0

More information

使用手冊

使用手冊 使用手冊 版權所有 2013 年 Microtek International, Inc. 保留所有權利 商標 Microtek MII MiiNDT ScanWizard Microtek International, Inc. Windows Microsoft Corporation 重要須知 Microtek Microtek Windows Microsoft Windows I49-004528

More information

Excel VBA Excel Visual Basic for Application

Excel VBA  Excel Visual Basic for Application Excel VBA Jun5,00 Sub 分頁 () Dim i As Integer Dim Cname As String Dim Code As Variant Set score=thisworkbook.sheets("sheet") Code=Array(" 專北一 "," 專北二 "," 專北三 "," 專桃園 "," 專桃竹 "," 專中苗 ", " 專台中 "," 專台南 ","

More information

week04.key

week04.key 基礎網 頁設計 第四週 老師 : 蔡承洋 大綱 HTML 標籤 元素 屬性 常 用標籤 標籤屬性 網 頁檔案命名 網站資料夾與檔案路徑關連 課後作業 HTML 標籤 元素 屬性 tag 標籤 使 用 < > 包起來, 包住的是 tag 名稱 http://www.w3schools.com/tags/ 所有 tag 列表 element 元素 開始標籤 我是 一段 文字

More information

任務二 : 產生 20 個有炸彈的磚塊, 放在隨機的位置編輯 Block 類別的程式碼 import greenfoot.; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) Write a description of class

任務二 : 產生 20 個有炸彈的磚塊, 放在隨機的位置編輯 Block 類別的程式碼 import greenfoot.; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) Write a description of class 踩地雷遊戲 高慧君南港高中 開啟專案 MineSweep 任務一 : 產生 30X20 個磚塊編輯 Table 類別的程式碼 import greenfoot.; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) import java.util.arraylist; Write a description of class MyWorld

More information

The Applicibility of Google Maps/Earth and Urmap API to Real Estate Database* Jin-Tsong Hwang** Abstract Whether the real estate market is prosperous

The Applicibility of Google Maps/Earth and Urmap API to Real Estate Database* Jin-Tsong Hwang** Abstract Whether the real estate market is prosperous 53 73 Journal of Taiwan Land Research Vol. 9, No.2 pp. 53~73 Google Maps/Earth Urmap API * ** 95 4 7 95 7 4 摘 要 ASP Google Maps/Earth Urmap API * ** E-mail jthwang@mail.ntpu.edu.tw 53 The Applicibility

More information

untitled

untitled VB 來 立 李 龍老 年 參 車 令 度 綠 車 不 不 靈 了 來 令來 了老 利 來 練 念 邏 念 數 度 念 狀 不 度 令 數 更 參 VB VB VB 理 VB 類 數 (x,y) (0,0) x y x,y 數 (0,0) (x, 0) (0, y) (x, y) VB 裡 來 VB 來 1 Graphics VB Graphics Private Sub Button1_Click(

More information

第一章 章标题-F2 上空24,下空24

第一章 章标题-F2 上空24,下空24 Web 9 XML.NET Web Web Service Web Service Web Service Web Service Web Service ASP.NET Session Application SOAP Web Service 9.1 Web Web.NET Web Service Web SOAP Simple Object Access Protocol 9.1.1 Web Web

More information

06 01 action JavaScript action jquery jquery AJAX CSS jquery CSS jquery HTML CSS jquery.css() getter setter.css('backgroundcolor') jquery CSS b

06 01 action JavaScript action jquery jquery AJAX CSS jquery CSS jquery HTML CSS jquery.css() getter setter.css('backgroundcolor') jquery CSS b 06 01 action JavaScript action jquery jquery AJAX 04 4-1 CSS jquery CSS jquery HTML CSS jquery.css() getter setter.css('backgroundcolor') jquery CSS background-color camel-cased DOM backgroundcolor.css()

More information

1. 2. Flex Adobe 3.

1. 2. Flex Adobe 3. 1. 2. Flex Adobe 3. Flex Adobe Flex Flex Web Flex Flex Flex Adobe Flash Player 9 /rich Internet applications/ria Flex 1. 2. 3. 4. 5. 6. SWF Flash Player Flex 1. Flex framework Adobe Flex 2 framework RIA

More information

2016 勒索軟體白皮書

2016 勒索軟體白皮書 Botnet Botnet 1 1 2 2 5 5 6 9 10 11 11 11 12 12 12 12 12 12 13 14 2016 1989 AIDS AIDS C 189 2005 2006 TROJ_CRYPZIP.A 2011 TROJ_RANSOM.QOWA 12 2012 REVETON 2013 Cryptolocker Cryptolocker AES RSA Cryptolocker

More information

一 個 SQL Injection 實 例 的 啟 示 頁 2 / 6 因 此, 在 知 名 網 站 上 看 到 SQL Injection, 讓 人 驚 心, 卻 不 意 外 網 站 專 案 外 包 是 目 前 業 界 的 常 態, 而 在 價 格 取 勝 的 制 度 下, 低 價 得 標 的 S

一 個 SQL Injection 實 例 的 啟 示 頁 2 / 6 因 此, 在 知 名 網 站 上 看 到 SQL Injection, 讓 人 驚 心, 卻 不 意 外 網 站 專 案 外 包 是 目 前 業 界 的 常 態, 而 在 價 格 取 勝 的 制 度 下, 低 價 得 標 的 S 一 個 SQL Injection 實 例 的 啟 示 頁 1 / 6 你 的 網 站 在 裸 奔 嗎? 一 個 SQL Injection 實 例 的 啟 示 作 者 : 李 明 儒 SQL Injection( 資 料 隱 碼 攻 擊 ) 問 題 早 就 不 是 什 麼 新 聞, 但 前 陣 子 在 一 個 頗 具 知 名 度 的 活 動 網 站 上, 赫 然 發 現 它 大 刺 刺 地 現 身!

More information

PowerPoint Presentation

PowerPoint Presentation Visual Basic 2005 學 習 範 本 第 7 章 陣 列 的 活 用 7-1 陣 列 當 我 們 需 要 處 理 資 料 時, 都 使 用 變 數 來 存 放 資 料 因 為 一 個 變 數 只 能 代 表 一 個 資 料, 若 需 要 處 理 100 位 同 學 的 成 績 時, 便 要 使 用 100 個 不 同 的 變 數 名 稱, 這 不 但 會 增 加 變 數 名 稱 命 名

More information

第七章

第七章 6-1 ADO.NET 簡介 ADO.NET 是微軟.NET 平台所提供的新世代資料存取技術,ADO.NET 的原文是 ActiveX Data Objects for the.net Framework (ADO.NET); 而 ADO.NET 是包含在.NET Framework 之中, 可以透過 ADO.NET 的資料存取技術來存取包括資料庫 XML 和應用程式的資料 所以本章將會利用到 SQL

More information

F477

F477 FrontPage & Flash 連 CSIE, NTU September 15, 2007 Outline September 15, 2007 Page 2 連 FrontPage September 15, 2007 Page 3 連 FTP Email FrontPage HTML tag September 15, 2007 Page 4 連 September

More information

! 2000 CSSsprites.com Web FTP app 20% 80% getelementbyid() UI Facebook F8 Web CSSsprites.com Web JavaScript CSS React xi React UI UI 反應 UI 宣告 d

! 2000 CSSsprites.com Web FTP app 20% 80% getelementbyid() UI Facebook F8 Web CSSsprites.com Web JavaScript CSS React xi React UI UI 反應 UI 宣告 d ! 2000 CSSsprites.com Web FTP app 20% 80% getelementbyid() UI Facebook 2015 3 F8 Web CSSsprites.com Web JavaScript CSS React xi React UI UI 反應 UI 宣告 declare 元件 DOM state JavaScript xi React Web ios Android

More information

TC35短信发送程序设计

TC35短信发送程序设计 http://www.dragonsoft.net.cn/down/project/tc35_sms.rar TC35 AT /down/book/tc35_at.pdf TC35/TC35i GSM Modem TC35 GSM POS COM SIM DOWN COM E, vbcr AT VB6.0 1)C# http://www.yesky.com/softchannel/72342380468109312/20040523/1800310.shtml,

More information

untitled

untitled 1 Access 料 (1) 立 料 [] [] [ 料 ] 立 料 Access 料 (2) 料 [ 立 料 ] Access 料 (3) 料 料 料 料 料 料 欄 ADO.NET ADO.NET.NET Framework 類 來 料 料 料 料 料 Ex MSSQL Access Excel XML ADO.NET 連 .NET 料.NET 料 料來 類.NET Data Provider

More information

(CIP) Web /,. :,2005. 1 ISBN 7 81058 782 X.W............T P393.4 CIP (2004) 118797 Web ( 99 200436) ( http:/ / www.shangdapress.com 66135110) : * 787

(CIP) Web /,. :,2005. 1 ISBN 7 81058 782 X.W............T P393.4 CIP (2004) 118797 Web ( 99 200436) ( http:/ / www.shangdapress.com 66135110) : * 787 Web (CIP) Web /,. :,2005. 1 ISBN 7 81058 782 X.W............T P393.4 CIP (2004) 118797 Web ( 99 200436) ( http:/ / www.shangdapress.com 66135110) : * 787 1092 1/ 16 30.75 748 2005 1 1 2005 1 1 : 1 3 100

More information

<img>

<img> 04 圖片 4-1 4-2 4-3 4-4 網頁程式設計 4-1 網頁多媒體 Flash Java Applets HTML 8 4-1-1 圖片 JPEG Joint Photographic Experts Group 非失真模式 (lossless) 基本模式 (baseline standard) 1 2 12 JPEG 6 JPEG.jpg.jpe.jpeg GIF (graphic

More information

Microsoft Word - CH07_P36

Microsoft Word - CH07_P36 定時作業的最佳利器, 善用 Timer 控制項 Timer 控制項的運作機制 Timer 控制項的使用模式 Timer 控制項的擺放位置與其影響 Timer 控制項範例集錦 我相信大家對 Timer 控制項都不會感到陌生, 畢竟在 Windows Form 應用程式中, 就已提供 Timer 控制項來幫助大家定時完成特定作業 ASP.NET AJAX 所提供的 Timer 控制項是一個伺服器控制項,

More information

RUN_PC連載_10_.doc

RUN_PC連載_10_.doc PowerBuilder 8 (10) Jaguar CTS ASP Jaguar CTS PowerDynamo Jaguar CTS Microsoft ASP (Active Server Pages) ASP Jaguar CTS ASP Jaguar CTS ASP Jaguar CTS ASP Jaguar CTS ASP Jaguar CTS ASP Jaguar Server ASP

More information

1 1 Excel VBA 說明 ( ) (_) STEP4 Excel 2 STEP5 A1 1 B2 2 C3 3 STEP6 A1 STEP7 > > 1-11

1 1 Excel VBA 說明 ( ) (_) STEP4 Excel 2 STEP5 A1 1 B2 2 C3 3 STEP6 A1 STEP7 > > 1-11 1-3 1-3-1 Excel VBA VBA OK CD DVD Excel VBA Excel VBA Excel Visual Basic A1 1 B2 2 C3 3 STEP1 Excel Ch01_VBA.xlsm 1 > > STEP2 Excel 1 2 STEP3 1-10 1 1 Excel VBA 說明 ( ) (_) STEP4 Excel 2 STEP5 A1 1 B2 2

More information

F477

F477 FrontPage & Flash 連 CSIE, NTU September 15, 2007 Outline September 15, 2007 Page 2 F477 September 15, 2007 Page 3 September 15, 2007 Page 4 September 15, 2007 Page 5 連 September 15, 2007 Page 6 連 September

More information

Microsoft Word - 最新正文.doc

Microsoft Word - 最新正文.doc 2 2 Web 2.0 Ajax StarTrackr! GPS RFID jquery JavaScript StarTrackr! JavaScript jquery 1 jquery jquery jquery JavaScript HTML jquery JavaScript jquery jquery jquery $(document).ready()! jquery jquery (document)

More information

2.4 Selenium Python Selenium Selenium Selenium Selenium pip install selenium Chrome WebDriver Google Chrome (Linux, Mac, Windows) Chrome WebDriv

2.4 Selenium Python Selenium Selenium Selenium Selenium pip install selenium Chrome WebDriver Google Chrome (Linux, Mac, Windows) Chrome WebDriv Chapter 02 大數據資料爬取與分析 Python Python Requests BeautifulSoup Regular Expression Selenium Pandas Python 2.4 Selenium Python 2.4.1 Selenium Selenium Selenium Selenium pip install selenium Chrome WebDriver

More information

一 新增 SQL Express 2008 資料庫 步驟一 : 首先, 利用 VB 新增一個 Windows Form 應用程式的專案, 專案名稱為 MyDB 專案名稱為 MyDB 步驟二 : 接下來, 請執行 VB 功能表上的 專案 / 加入新項目, 此時, 請在 加 入新項目 的對話方塊中, 選

一 新增 SQL Express 2008 資料庫 步驟一 : 首先, 利用 VB 新增一個 Windows Form 應用程式的專案, 專案名稱為 MyDB 專案名稱為 MyDB 步驟二 : 接下來, 請執行 VB 功能表上的 專案 / 加入新項目, 此時, 請在 加 入新項目 的對話方塊中, 選 附件三 VB 與 SQL Express 資料庫結合 ADO.NET 是程式語言與資料庫存取的一個非常重要的媒介 因此, 我們可以利用 VB2010 C#2010 ASP.NET 4.0 及 J# 等程式語言來撰寫應用程式, 再透過 ADO.NET 就可以輕易的存取資料庫的資料了 因此, 當我們安裝完成 Visual Studio 2010 或 Visual Basic 2010 Express Edition

More information

FETnet - Acer Iconia Tab  (A500 Wi-Fi 版) 平板電腦操作指南

FETnet - Acer Iconia Tab  (A500 Wi-Fi 版) 平板電腦操作指南 Acer Iconia Tab (A500) 平板電腦操作指南 作業系統 :Android 3.0 / 網路頻段 :Wi-Fi 版暫不支援 :Exchange Server 信箱 ( 無法使用 Smart 助手 ) 及手寫輸入法 產品外觀安全保密功能設定數據功能 開關 PIN 碼 ( 暫無資料 ) 更改 PIN 碼 ( 暫無資料 ) 解除 PUK 碼 ( 暫無資料 ) 手機密碼鎖 手動選網 ( 暫無資料

More information

untitled

untitled JavaEE+Android - 6 1.5-2 JavaEE web MIS OA ERP BOSS Android Android Google Map office HTML CSS,java Android + SQL Sever JavaWeb JavaScript/AJAX jquery Java Oracle SSH SSH EJB+JBOSS Android + 1. 2. IDE

More information

27 :OPC 45 [4] (Automation Interface Standard), (Costom Interface Standard), OPC 2,,, VB Delphi OPC, OPC C++, OPC OPC OPC, [1] 1 OPC 1.1 OPC OPC(OLE f

27 :OPC 45 [4] (Automation Interface Standard), (Costom Interface Standard), OPC 2,,, VB Delphi OPC, OPC C++, OPC OPC OPC, [1] 1 OPC 1.1 OPC OPC(OLE f 27 1 Vol.27 No.1 CEMENTED CARBIDE 2010 2 Feb.2010!"!!!!"!!!!"!" doi:10.3969/j.issn.1003-7292.2010.01.011 OPC 1 1 2 1 (1., 412008; 2., 518052), OPC, WinCC VB,,, OPC ; ;VB ;WinCC Application of OPC Technology

More information

Microsoft Word - 28935样章.dot

Microsoft Word - 28935样章.dot 21 世 纪 高 职 高 专 规 划 教 材 系 列 何 福 贵 张 梅 编 著 机 械 工 业 出 版 社 IV 本 书 全 面 地 介 绍 了 网 页 制 作 技 术 及 其 相 关 理 论 全 书 共 分 12 章, 包 括 绪 论 网 站 的 创 建 与 管 理 网 页 基 本 元 素 实 现 网 页 页 面 布 局 实 现 表 单 的 应 用 CSS 与 模 板 使 用 Div 和 AP

More information

無障礙網頁開發規範二版(草案)

無障礙網頁開發規範二版(草案) 國 家 通 訊 傳 播 委 員 會 無 障 礙 網 頁 開 發 規 範 2.0 版 ( 草 案 ) 委 辦 單 位 : 國 家 通 訊 傳 播 委 員 會 執 行 單 位 : 中 華 民 國 資 訊 軟 體 協 會 中 華 民 國 1 0 3 年 0 5 月 I II 目 錄 壹 前 言... 1 貳 適 用 範 圍... 2 參 用 語 釋 義... 3 肆 規 範 內 文... 14 一 規 範

More information

1 Framework.NET Framework Microsoft Windows.NET Framework.NET Framework NOTE.NET NET Framework.NET Framework 2.0 ( 3 ).NET Framework 2.0.NET F

1 Framework.NET Framework Microsoft Windows.NET Framework.NET Framework NOTE.NET NET Framework.NET Framework 2.0 ( 3 ).NET Framework 2.0.NET F 1 Framework.NET Framework Microsoft Windows.NET Framework.NET Framework NOTE.NET 2.0 2.0.NET Framework.NET Framework 2.0 ( 3).NET Framework 2.0.NET Framework ( System ) o o o o o o Boxing UnBoxing() o

More information

Spyder Anaconda Spyder Python Spyder Python Spyder Spyder Spyder 開始 \ 所有程式 \ Anaconda3 (64-bit) \ Spyder Spyder IPython Python IPython Sp

Spyder Anaconda Spyder Python Spyder Python Spyder Spyder Spyder 開始 \ 所有程式 \ Anaconda3 (64-bit) \ Spyder Spyder IPython Python IPython Sp 01 1.6 Spyder Anaconda Spyder Python Spyder Python Spyder Spyder 1.6.1 Spyder 開始 \ 所有程式 \ Anaconda3 (64-bit) \ Spyder Spyder IPython Python IPython Spyder Python File

More information

Microsoft Word CH05__P10

Microsoft Word CH05__P10 探討 JavaScript 的日期全球化功能 關於文化特性值使用瀏覽器語言設定來全球化 JavaScript 的日期值使用 Web.config 的設定來全球化 JavaScript 的日期值使用網頁設定來全球化 JavaScript 的日期值使用伺服器端程式碼來全球化 JavaScript 的日期值 JavaScript 日期值全球化的優先順序 日期 " 是一個實務應用程式必定會使用到的資料項目,

More information

穨文件1

穨文件1 2-1 Access 2000 Visual Basic Access 2000 97 Office Visual Basic Visual Basic Visual Basic VBA Visual Basic Visual Basic 2-1-1 Visual Basic Access Visual Basic ( ) 2-1 2-1 Visual Basic 2-1 Microsoft Access

More information

p.2 1 <HTML> 2 3 <HEAD> 4 <TITLE> </TITLE> 5 </HEAD> 6 7 <BODY> 8 <H3><B> </B></H3> 9 <H4><I> </I></H4> 10 </BODY> </HTML> 1. HTML 1. 2.

p.2 1 <HTML> 2 3 <HEAD> 4 <TITLE> </TITLE> 5 </HEAD> 6 7 <BODY> 8 <H3><B> </B></H3> 9 <H4><I> </I></H4> 10 </BODY> </HTML> 1. HTML 1. 2. 2005-06 p.1 HTML HyperText Mark-up Language 1. HTML Logo, Pascal, C++, Java HTML 2. HTML (tag) 3. HTML 4. HTML 1. HTML 2. 3. FTP HTML HTML html 1. html html html cutehtmleasyhtml 2. wyswyg (What you see

More information

内 容 协 作 平 台 TRS WCM 6.5 北 京 拓 尔 思 信 息 技 术 股 份 有 限 公 司 Beijing TRS Information Technology Co., Ltd 版 权 说 明 本 手 册 由 北 京 拓 尔 思 信 息 技 术 股 份 有 限 公 司 ( 以 下 简 称 TRS 公 司 ) 出 版, 版 权 属 TRS 公 司 所 有 未 经 出 版 者 正 式

More information

13 根 据 各 种 网 络 商 务 信 息 对 不 同 用 户 所 产 生 的 使 用 效 用, 网 络 商 务 信 息 大 致 可 分 为 四 级, 其 中 占 比 重 最 大 的 是 ( A ) A 第 一 级 免 费 信 息 B 第 二 级 低 收 费 信 息 C 第 三 级 标 准 收 费

13 根 据 各 种 网 络 商 务 信 息 对 不 同 用 户 所 产 生 的 使 用 效 用, 网 络 商 务 信 息 大 致 可 分 为 四 级, 其 中 占 比 重 最 大 的 是 ( A ) A 第 一 级 免 费 信 息 B 第 二 级 低 收 费 信 息 C 第 三 级 标 准 收 费 助 理 电 子 商 务 考 试 真 题 试 题 第 一 部 分 : 理 论 部 分 一 单 项 选 择 题 1 ( B ) 是 信 息 系 统 的 核 心 组 成 部 分 A 逻 辑 模 型 B 数 据 库 C 概 念 模 型 D 以 上 全 部 2 ping www.163.com -t 中 参 数 t 的 作 用 是 :( A ) A 进 行 连 续 测 试 B 在 新 窗 口 中 显 示 C

More information

THE GAME GUIDE WELCOME TO DARTSLIVE DARTSLIVE.com Ver.3.0 2013.05 HOW TO PLAY BEFORE YOU START THE GAME HOW TO PLAY THE GAME HOW TO COUNT THE SCORE AWARD MOVIE 自由設定AWARD! 讓飛鏢的樂趣多更多! AWARD MOVIE是甚麼? AWARD

More information

Windows 10 在數位轉型下 所扮演的重要角色暨安全功能介紹

Windows 10 在數位轉型下 所扮演的重要角色暨安全功能介紹 台灣微軟技術支援部技術支援經理 沈志豪 1 Agenda IE 提供的相容性功能 調整文件模式 (Document Mode) 調整瀏覽器模式 (Browser Mode) 使用者代理程式字串 (User Agent) 如何讓 IE11 自動化套用適當的文件模式 Meta Tag 相容性檢視 (Compatibility View) 企業模式 (Enterprise Mode) 5.1 v2 相容性問題排除策略

More information

IE10 WorkShop

IE10 WorkShop 沈志豪 Patrick 技術支援副理台灣微軟 Separation of Explorer 7 from the Windows shell http://support.microsoft.com/kb/928675/en-us IE10+ 標準模式下, 開始不支援 Conditional Comments

More information

書面

書面 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 5.4 互動功能畫面 程式碼請參考附件-程式三 在進入互動頁面時 會執行setAllText()依寵物狀態數值來 設定狀態文字與頭像 並且依心情決定是否要不要播放音效 觸摸的區域 由於是自己寫的 view 所以並未透過xml來設置 而是透過Layut.addview()來動態新增

More information

ActiveX Control

ActiveX Control ActiveX Control For Visual Basic 2005.NET [ 版本 : 1.0] 1 安裝 Windows 驅動程式 請依照下列步驟 : 1. 執行 Windows 驅動程式安裝程式 ( 此範例為 PIO-DIO) 驅動程式位置 : CD:\NAPDOS\PCI\PIO-DIO\dll_ocx\Driver http://ftp.icpdas.com/pub/cd/iocard/pci/napdos/pci/pio-dio/dll_ocx/driver/

More information