当前位置:   article > 正文

C#实现简单网页_c#开发网页

c#开发网页

⑴ 创建ASP.NET网站

新建MyWebSite网站,添加一个WebForm1网页,其中包含一个文本框TextBox1一个按钮Button1(计算)和一个标签Label1("")。在文本框中输入一个数,当点击“计算”按钮时,在标签中显示此数的平方根。

WebForm1.aspx文件内容如下:

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="shiyan1.WebForm1" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head runat="server">
  5. <title></title>
  6. <style type="text/css">
  7. .TextBox1 {
  8. width: 20px;
  9. height: 5px;
  10. right: 50%;
  11. left: 50%;
  12. margin-top: 20px;
  13. margin-right: 400px;
  14. }
  15. .Button1
  16. {
  17. width: 10px;
  18. height: 4px;
  19. right: 500px;
  20. left: 500px;
  21. }
  22. </style>
  23. </head>
  24. <body class="TextBox1">
  25. <form id="form1" runat="server">
  26. <div>
  27. <asp:TextBox ID="TextBox1" runat="server" ontextchanged="TextBox1_TextChanged"></asp:TextBox>
  28. </div>
  29. <p>
  30. <asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="计算"
  31. Width="73px" Height="29px" />
  32. </p>
  33. </form>
  34. </body>
  35. </html>

WebForm1.aspx.cs文件如下:

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.UI;
  6. using System.Web.UI.WebControls;
  7. namespace shiyan1
  8. {
  9. public partial class WebForm1 : System.Web.UI.Page
  10. {
  11. protected void Button1_C
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/885644
推荐阅读
相关标签
  

闽ICP备14008679号