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

加入VIP,免费下载
 

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

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

下载须知

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

版权提示 | 免责声明

本文(ASP Web Server Controls.ppt)为本站会员(bonesoil321)主动上传,麦多课文库仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知麦多课文库(发送邮件至master@mydoc123.com或直接QQ联系客服),我们立即给予删除!

ASP Web Server Controls.ppt

1、ASP Web Server Controls,Please use speaker notes for additional information!,Label Web Server ControlASP.NET Label Web Server Control,Label Web Server Control,Label Web Server ControlASP.NET Label Web Server ControlSimple example of a label control!,My code. Output Results of viewing source.,Label W

2、eb Server Control, Testing the Label Web Server ControlSub Page_LoadlblHeader.Text=“Testing the Label Web Server Control“lblDate.Text=“Today is: “ & now() End SubASP.NET, Testing the Label Web Server ControlASP.NETTesting the Label Web Server Control Today is: 6/24/2003 4:56:55 PM, Testing the Label

3、 Web Server ControlSub Page_LoadlblHeader.Text=“Testing the Label Web Server Control“lblDate.Text=“Today is: “ & now() End SubASP.NET,My code is shown here.,The output is shown here.,When you click on view source, you see the code below., Testing the Label Web Server ControlSub Page_Load(sender As O

4、bject, e As EventArgs)lblHeader.Text=“Testing the Label Web Server Control“lblDate.Text=“Today is: “ & now() End SubASP.NET,Label Web Server Control,Textbox Web Server ControlSub NameSub(sender As Object, e As EventArgs)lblGreet.text = “Hi, “ & txtFst.text & “ “ & txtLast.text End SubASP.NET Textbox

5、 Web Server ControlFirst Name Last Name ,Button & Textbox Web Server Controls,Textbox Web Server ControlASP.NET Textbox Web Server ControlFirst Name Last Name Hi, Susan Ash,List before I checked anything.,List after I checked the three components of my sentence.,Here I unclicked the horse and you ca

6、n see the sentence is simply jumped over the fence.,Now I clicked The dog and the sentence got reformed starting with the first clicked element and moving sequentially through the last clicked item., Make sentences using List ItemsSub makeSentence(sender As Object, e As EventArgs)dim ctmySentence.Te

7、xt=“Your sentence: “for ct =0 to phrases.Items.Count-1if phrases.Items(ct).Selected thenmySentence.Text=mySentence.Text & “ “ & phrases.Items(ct).Textend ifnext End SubSub clear(Source As Object, e As EventArgs)dim ptfor pt = 0 to phrases.Items.Count-1if phrases.Items(pt).Selected thenphrases.Items(

8、pt).Selected = Falseend ifnextmySentence.Text=“ End Sub,Each time this is executed, it checks all of the check boxes and concatenates each box that is checked to the mySentence structure.,This code clears by checking to see if the item is checked and if it is setting it to false. Obviously, I did no

9、t need to do the check, I could have just set them all to false.,Clears the sentence which is made up of the phrase Your sentence in a paragraph followed by the selected elements formed into the mySentence structure.,The mySentence structure is a paragraph that says Your sentence: followed by the se

10、ntence I put together.,The dog The cat The bird The fish The horse ran flew swam jumped trotted over the fence onto the railing into the rock down the hill into the tree into the cage up the stream,The event OnSelectedIndexChanged causes makeSentence to be executed.,This code sets up the elements in

11、 the list.,The label holds the sentence that was constructed.,A clear button is set up. The on click event causes the clearButton sub to be executed.,Your sentence: The horse jumped over the fence,The dog, Make sentences using List Items,The dog The cat The bird The fish The horse The duck The eleph

12、ant ran flew swam jumped trotted lumbered walked over the fence onto the railing into the rock down the hill into the tree into the cage up the stream,Changed code to get 3 vertical columns.,Added elements to the list of items., Make sentences using List ItemsFare TableFrom BostonFrom NYFrom DCTo Lo

13、ndon199189195To San Francisco245230295,Table Web Server Control,Continued on next slide.,To Baku535500490To Oslo420380410, TableSub getFare(sender As Object, e As EventArgs)dim strFare as stringdim intFromIndx as integerdim intToIndx as integerdim objRow as TableRowdim objCell as TableCellintFromInd

14、x = fromCity.SelectedIndexintToIndx = toCity.SelectedIndexobjRow = flyPrice.Rows.Item(intToIndx+1)objCell = objRow.Cells.Item(intFromIndx+1)strFare = objCell.TextyourFare.Text=“Your fare is: “ & strFare End SubFrom Boston From NY From DCTo London To San Francisco To Baku To Osloasp:Table runat=“serv

15、er“ id=“flyPrice“ BorderWidth=3 CellPadding=5 CellSpacing=5,fromCity.Selected Index means to tell which one was selected (0, 1, 2). This works the same with toCity.Selected Index, but there is one more entry.,Now I am going to the table with multiple rows (shown on next slide) and use intToIndx +1 b

16、ecause in this table I made the first row a header. After getting the Row, I then get the cell. I then store the text from the objCell as the strFare.,Here is where I develop the contents of yourFare which is the id of the label displayed in the next screen.,GridLines=“both“ HorizontalAlign=“Left“Fa

17、re TableFrom BostonFrom NYFrom DCTo London197189195To San Francisco245230295To Baku535500490To Oslo420380410,This shows the setup of the table and cells and the data contained. You can see the headers and the data.,I know use label to show the id of yourFare which was generated in the OnClick execution of getFare., TableFrom BostonFrom NYFrom DCTo LondonTo San FranciscoTo BakuTo OsloFare TableFrom BostonFrom NYFrom DCTo London197189195To San Francisco245230295To Baku535500490To Oslo420380410Your fare is: 245 ,

copyright@ 2008-2019 麦多课文库(www.mydoc123.com)网站版权所有
备案/许可证编号:苏ICP备17064731号-1