欢迎来到天天文库
浏览记录
ID:38584780
大小:832.00 KB
页数:13页
时间:2019-06-15
《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
此文档下载收益归作者所有