ImageVerifierCode 换一换
格式:DOC , 页数:16 ,大小:1.95MB ,
资源ID:3721747      下载积分:20 文钱
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,省得不是一点点
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.wenke99.com/d-3721747.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: QQ登录   微博登录 

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(《计算机信息安全实验指导书》封面.doc)为本站会员(创****公)主动上传,文客久久仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知文客久久(发送邮件至hr@wenke99.com或直接QQ联系客服),我们立即给予删除!

《计算机信息安全实验指导书》封面.doc

1、淮 阴 工 学 院Mobile Computing 实验指导书编者:陈礼青计算机工程学院2011 年 6 月 30 日2目 录EXPERIMENT ONE MOBILE WEB FORM STRUCTURE .31 实验目的 .32 实验环境 .33 实验步骤 .34 实验小结 .6EXPERIMENT TWO DATA ACCESS.71 实验目的 .72 实验环境 .73 实验步骤 .74 实验小结 .12EXPERIMENT THREE VALIDATION CONTROLS .131 实验目的 .132 实验环境 .133 实验步骤 .134 实验小结 .163Experiment O

2、ne Mobile Web Form Structure1 实验目的通过本次实验掌握移动页面的设计,了解移动页面的处理过程,即如下五个步骤:(1) Initialization 初始化(2) Event Handling 事件处理(3) Device Detection 设备检测(4) Rendering 数据获取及显示(5) Cleanup 清空2 实验环境操作系统:Windows XP相关软件:Visual Studio 2005Microsoft .NET Framework 3.5Windows Mobile 6 Standard SDKMicrosoft Mobile Interne

3、t ToolkitMicrosoft Mobile Explorer Emulator3 实验步骤比较 Web 页面与 Mobile 页面的异同,如图 1.1 所示。Web Page Mobile Page图1.1 Web页面与Mobile页面的异同4其中,左图为Web页面,具体实现代码如下:ArrayList PersonList;protected void Page_Load(object sender, System.EventArgs e)for (int i=20;iWEB FORMName:Age:5右图为Mobile页面,具体实现代码如下:ArrayList PersonLis

4、t;protected void Page_Load(object sender, System.EventArgs e)for (int i=20;iMOBILE FORMName:6Age:4 实验小结通过本次实验,熟悉了移动页面的设计,掌握了移动页面的处理过程,了解了 Mobile页面和 Web 页面的异同。本次实验需提交实验报告,内容包括:Part I Experiment PurposePart II Experiment ContentPart III Experiment ProceduresPart IV Experiment Experience7Experiment Two

5、 Data Access1 实验目的 通过此次实验掌握移动页面的数据访问和相关控件进行数据绑定的过程。2 实验环境 操作系统:Windows XP相关软件:Visual Studio 2005Microsoft .NET Framework 3.5Windows Mobile 6 Standard SDKMicrosoft Mobile Internet ToolkitMicrosoft Mobile Explorer Emulator3 实验步骤 待访问的数据表的结构如表 2.1 及图 2.1 所示。 表 2.1 待访问的数据表Field Name Data Type Field Size

6、Required IndexedID AutoNumber Long Integer (Primary Key) Yes (No Duplicates)HighwayName Text 50 No NoTravelTime Text 50 No No图2.1 待访问的数据表数据访问具体实现过程如下:1) Create a new file, and enter the following code:8void Page_Load(Object sender, EventArgs e)if (!IsPostBack)/Create a connection stringstring strCon

7、n = “PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA SOURCE=“ + “C:Traffic.mdb;“; /Create the SQL Statementstring strSQL = “select * from TrafficInfo“; /Create a Connection objectOleDbConnection Conn = new OleDbConnection(strConn); /Create a command object using the connection objectOleDbCommand Cmd = new Ole

8、DbCommand(strSQL,Conn); /Open the DB connectionConn.Open(); /String for outputstring strOutput = “;/Create a OleDbDataReader objectOleDbDataReader Rdr;/Execute the command objects ExecuteReader method to /create a new DataReader objectRdr = Cmd.ExecuteReader(CommandBehavior.CloseConnection);/ Read a

9、ll the data in the DataReader object using a while loopwhile (Rdr.Read() / Create the output string objectstrOutput += Rdr“HighwayName“ + “ - “ + Rdr“TravelTime“ + “, “;/Display the resultOutput.Text = strOutput;9/ always call Close when done reading.Rdr.Close();/ Close the connection when done with

10、 it.Conn.Close();2) Save this file as DataAccess_CS.aspx in your test directory.3) Open your browser, and you should see a result similar to those shown below: (如图 2.2所示)图 21.1 数据访问将 List 控件与 ArrayList 对象绑定的实现过程如下:1) Create a new file, and enter the following code/Private Class declaration to /expos

11、e traffic related propertiesprivate class Traffic/Private members of the class10string strHighway, strTravelTime;/Default constructorpublic Traffic(string HighWay, string TravelTime)this.strHighway = HighWay;this.strTravelTime = TravelTime;/HighwayName read only propertypublic string HighwayNamegetr

12、eturn this.strHighway;/TravelTime read only propertypublic string TravelTimegetreturn this.strTravelTime;void Page_Load(Object sender, EventArgs e)if (!IsPostBack)/Declare a new ArrayList objectArrayList aryTraffic = new ArrayList();/Add some traffic data to the array object /in the form of the Traffic object.aryTraffic.Add(new Traffic(“I90 East“, “50 Mins“);aryTraffic.Add(new Traffic(“I90 West“, “33 Mins“);aryTraffic.Add(new Traffic(“I94 North“, “70 Mins“);aryTraffic.Add(new Traffic(“I94 South“, “40 Mins“);/Data bind the Array List object/into the List control

Copyright © 2018-2021 Wenke99.com All rights reserved

工信部备案号浙ICP备20026746号-2  

公安局备案号:浙公网安备33038302330469号

本站为C2C交文档易平台,即用户上传的文档直接卖给下载用户,本站只是网络服务中间平台,所有原创文档下载所得归上传人所有,若您发现上传作品侵犯了您的权利,请立刻联系网站客服并提供证据,平台将在3个工作日内予以改正。