在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
创建第一个ASP.NET网站打开Visual Studio 2010,选择菜单【工具\导入和导出设置】 文件\新建网站,已安装的模板【visual basic】【ASP.NET网站】Web位置:【文件系统】,单击【确定】。 打开【Default.aspx】,在【源】视图中的MainContent中替换原有代码为: <asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent"> <h2> Hello World</h2> <p> Welcome to Beginning ASP.NET 4 on <%= DateTime.Now.ToString() %></p> </asp:Content> 按Ctrl+F5打开页面。如果网站要求输入用户名和密码则,在解决方案资源管理器中,右击站点选择【属性页】,在【启动选项】中,取消【NTLM身份验证】复选框。 创建第一个ASP.NET Web页面启动Viusal Studio 并选择【文件\新建网站】,打开新建网站对话框。 向站点添加带代码的Web窗体按照前一个实例,创建一个空网站。 Protected Sub Page_Load(sender As Object, e As System.EventArgs) Handles Me.Load Label1.Text = "Hello World; the time is now " & DateTime.Now.ToString() End Sub 在浏览器中查看页面。 添加带格式的文本试着用各种工具添加如下内容 <p> We're glad you're <span class="style1">paying a visit</span> to <a href="http://www.PlanetWrox.com">www.PlanetWrox.com</a>, the coolest music community site on the Internet. </p> <p> Feel free to have a look around; there are lots of interesting <strong>reviews and concert pictures</strong> to be found here. </p> 常用编辑操作在aspx文件的设计视图,选择【表\插入表】。 确认【视图\可视辅助\可视边框】被选中。 选择【格式\项目符号和编号】。 在设计视图输入任何文本,选中文本然后【转化为超链接】(Ctrl+L)。
|
请发表评论