首页 > 编程 > .NET > 正文

我的第一个Asp.Net程序

2024-07-10 12:56:16
字体:
来源:转载
供稿:网友

商业源码热门下载www.html.org.cn



首先配制好自己的环境,要能够运行aspx程序。。


把下面这段保存成 hello.aspx


<%@ page language="vb" src="hellocodebehindvb.vb" inherits="hellowebformvb"%>

<html>

   <head>

      <title>我的第一个asp.net程序</title>

   </head>

   <body>

   使用vb.net写的第一个小程序,庆祝一下。<p><p>

      <form runat="server" id="form1">

         <asp:button runat="server" text="点击" id="button1" />

         <p>

         <asp:label runat="server" text="" id="thelabel" />

      </form>

   </body>

</html>




把下面这段保存成文件hellocodebehindvb.vb




public class hellowebformvb

    inherits system.web.ui.page

    protected withevents button1 as system.web.ui.webcontrols.button

    protected thelabel as system.web.ui.webcontrols.label

 private sub button1_click(byval sender as object, byval e as system.eventargs) handles button1.click

      thelabel.text = "您好,我是慈勤强,看到了吗?^o^<p>"+button1.text+"<p>"+thelabel.text 

    end sub




 private sub page_load(byval sender as system.object, byval e as system.eventargs) handles mybase.load

        '在此处放置初始化页的用户代码

        thelabel.text = "<a href=http://blog.csdn.net/cqq>http://blog.csdn.net/cqq</a>"

    end sub

end class



然后运行 hello.aspx 就可以了
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表