web控件实验报告 含代码

web控件实验报告 含代码

ID:38584780

大小:832.00 KB

页数:13页

时间:2019-06-15

web控件实验报告 含代码_第1页
web控件实验报告 含代码_第2页
web控件实验报告 含代码_第3页
web控件实验报告 含代码_第4页
web控件实验报告 含代码_第5页
资源描述:

《web控件实验报告 含代码》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、实验名称基本控件实验实验目的熟练掌握各种控件的使用及事件的代码编写,能够掌握老师上课所讲的内容。实验设备MicrosoftVisualStudio2010实验过程(要求根据实现进行的过程,常用文字、图、表等描述,可另附页)1、创建Web窗体,使用Label控件显示文字“现在的时间是:”以及具体时间,自行设置其文字颜色、字体、字号、背景色等属性;增加一个Button按钮,要求当按下该按钮后能改变Label控件上文字的字体、字号、颜色和边框样式。如:代码为:usingSystem;usingSystem.Collections.Gen

2、eric;usingSystem.Linq;usingSystem.Web;usingSystem.Web.UI;usingSystem.Web.UI.WebControls;publicpartialclass_Default:System.Web.UI.Page{protectedvoidPage_Load(objectsender,EventArgse){Label1.Text="现在的时间是"+DateTime.Now.ToString();}protectedvoidButton1_Click(objectsender,

3、EventArgse){Label1.Font.Name="宋体";Label1.Font.Size=12;Label1.BorderStyle=BorderStyle.Dotted;Label1.BorderColor=System.Drawing.Color.Blue;Label1.BackColor=System.Drawing.ColorTranslator.FromHtml("#cc00ff");Label1.ForeColor=System.Drawing.Color.Brown;Button1.Text="已改变样式

4、";Button1.Enabled=false;}}运行结果为:1、创建Web窗体,该窗体上有一个TextBox控件和一个Button控件,要求每当用户单击按钮时,文本框会显示数据反映单击的次数。如:代码为:usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Web;usingSystem.Web.UI;usingSystem.Web.UI.WebControls;publicpartialclassDefault2:System.Web

5、.UI.Page{staticinti;protectedvoidPage_Load(objectsender,EventArgse){if(!IsPostBack)TextBox1.Text="0";}protectedvoidButton1_Click(objectsender,EventArgse){i=i+1;TextBox1.Text=i.ToString();}}运行结果为:1、创建Web窗体,其中包含三种不同类型的TextBox,分别为单行、密码和多行文本框,如果用户在密码框中输入的密码少于8位或大于15位,就弹出错

6、误提示对话框,运行效果如下:代码为:usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Web;usingSystem.Web.UI;usingSystem.Web.UI.WebControls;publicpartialclassDefault3:System.Web.UI.Page{protectedvoidPage_Load(objectsender,EventArgse){}protectedvoidTextBox2_TextCh

7、anged(objectsender,EventArgse){if(TextBox2.Text.Length<8

8、

9、TextBox2.Text.Length>15)Response.Write("");}protectedvoidButton1_Click(objectsender,EventArgse){}protectedvoidTextBox3_TextChanged(objectsender,EventArgse){}

10、}运行结果为:4、4、利用image控件、button控件实现图片的更换,显示比例的调整。代码为:usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.We

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。