diff --git "a/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/.keep" "b/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/.keep" new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git "a/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/WebForm1.aspx" "b/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/WebForm1.aspx" new file mode 100644 index 0000000000000000000000000000000000000000..69f5d022525eaef930ec86f487fa9b0d8caab9e5 --- /dev/null +++ "b/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/WebForm1.aspx" @@ -0,0 +1,48 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication2.WebForm1" %> + + + + + + + + + + +
+
+

注册页面

+ 用户名: +
+ 密 码: +
+ 性 别: + + + +
+ 爱 好: + 唱歌 + 跳舞 + rep + 篮球 + +
+ 籍 贯:省 +
+
+ 其它信息: +
+ 头像: +
+ +
+ +
+ +
+
+ + diff --git "a/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/WebForm1.aspx.cs" "b/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/WebForm1.aspx.cs" new file mode 100644 index 0000000000000000000000000000000000000000..4fcb0645fd485d481190a5436d9c6781e1f36364 --- /dev/null +++ "b/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/WebForm1.aspx.cs" @@ -0,0 +1,104 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace WebApplication2 +{ + public partial class WebForm1 : System.Web.UI.Page + { + protected void Page_Load(object sender, EventArgs e) + { + if (!IsPostBack) + { + DropDownList1.Items.Add("福建"); + DropDownList1.Items.Add("广东"); + DropDownList1.Items.Add("新疆"); + DropDownList1.Items.Add("广西"); + DropDownList2.Items.Add("泉州"); + DropDownList2.Items.Add("福州"); + DropDownList2.Items.Add("厦门"); + DropDownList2.Items.Add("龙岩"); + } + } + + protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e) + { + string province = DropDownList1.SelectedValue; + DropDownList2.Items.Clear(); + + if (province == "福建") + { + DropDownList2.Items.Add("泉州"); + DropDownList2.Items.Add("福州"); + DropDownList2.Items.Add("厦门"); + DropDownList2.Items.Add("龙岩"); + } + else if (province == "广东") + { + DropDownList2.Items.Add("深圳"); + DropDownList2.Items.Add("广州"); + DropDownList2.Items.Add("珠海"); + DropDownList2.Items.Add("汕头"); + } + else if (province == "新疆") + { + DropDownList2.Items.Add("乌鲁木齐"); + DropDownList2.Items.Add("吐鲁番"); + DropDownList2.Items.Add("阿克苏"); + DropDownList2.Items.Add("喀什"); + } + else + { + DropDownList2.Items.Add("南宁"); + DropDownList2.Items.Add("桂林"); + DropDownList2.Items.Add("贺州"); + DropDownList2.Items.Add("柳州"); + } + } + + protected void Button1_Click(object sender, EventArgs e) + { + string s = "性别是:"; + string t = "爱好是:"; + foreach (ListItem item in RadioButtonList1.Items) + { + if (item.Selected) + { + s = $"{item.Text}"; + } + else + { + s += "人妖"; + break; + } + } + for (int i = 0; i < CheckBoxList1.Items.Count; i++) + { + if (CheckBoxList1.Items[i].Selected) + { + t += CheckBoxList1.Items[i].Text + " "; + } + else + { + t = "没有爱好"; + } + } + if (FileUpload1.HasFile) + { + string fileName = FileUpload1.FileName; + if (fileName.EndsWith(".jpg") || fileName.EndsWith(".png") || fileName.EndsWith(".jpeg")) + { + string url = Server.MapPath("/img/" + fileName); + FileUpload1.SaveAs(url); + Image1.ImageUrl = "/img/" + fileName; + Image1.Visible = true; + } + } + Label1.Text = $"用户名:{TextBox1.Text},{s},{t},籍贯:{DropDownList1.Text}省{DropDownList2.Text}市,其它信息:{TextBox3.Text},头像:"; + } + + } +} \ No newline at end of file diff --git "a/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\345\247\223\345\220\215/WebForm2.aspx" "b/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\345\247\223\345\220\215/WebForm2.aspx" new file mode 100644 index 0000000000000000000000000000000000000000..2360c2fe3d3e985547275f471d0c19c787aa3bce --- /dev/null +++ "b/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\345\247\223\345\220\215/WebForm2.aspx" @@ -0,0 +1,30 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm2.aspx.cs" Inherits="WebApplication1.WebForm2" %> + + + + + + + + + +
+
+ +
+ +
+ + + + +
+ +
+ +
+ +
+
+ + diff --git "a/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\345\247\223\345\220\215/WebForm2.aspx.cs" "b/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\345\247\223\345\220\215/WebForm2.aspx.cs" new file mode 100644 index 0000000000000000000000000000000000000000..78ad34fb20254288eb7989cd0f4cda751d5f0099 --- /dev/null +++ "b/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\345\247\223\345\220\215/WebForm2.aspx.cs" @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace WebApplication1 +{ + public partial class WebForm2 : System.Web.UI.Page + { + protected void Page_Load(object sender, EventArgs e) + { + + } + + protected void Button1_Click(object sender, EventArgs e) + { + Label5.Text = $"姓名:{ TextBox1.Text},年龄:{ TextBox2.Text},性别:{ DropDownList1.SelectedValue}, 爱好:{ TextBox3.Text}"; + + } + } +} \ No newline at end of file diff --git "a/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\346\226\260\351\227\273/WebForm1.aspx" "b/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\346\226\260\351\227\273/WebForm1.aspx" new file mode 100644 index 0000000000000000000000000000000000000000..53803617c2095d904e3e88f4e917531b1b9814c6 --- /dev/null +++ "b/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\346\226\260\351\227\273/WebForm1.aspx" @@ -0,0 +1,52 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication1.WebForm1" %> + + + + + + + + + + +
+
+

在线新闻发布系统

+ + + 新华社 + 黎明社 + 人民日报 + 新周刊 + +
+ + + +
+ + +
+

+ + +

+
+ +
+
+ + diff --git "a/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\346\226\260\351\227\273/WebForm1.aspx.cs" "b/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\346\226\260\351\227\273/WebForm1.aspx.cs" new file mode 100644 index 0000000000000000000000000000000000000000..06a001e3ad3ea2594b757a5d66f7379af7b55dab --- /dev/null +++ "b/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\346\226\260\351\227\273/WebForm1.aspx.cs" @@ -0,0 +1,36 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace WebApplication1 +{ + public partial class WebForm1 : System.Web.UI.Page + { + protected void Page_Load(object sender, EventArgs e) + { + this.Label3.Text = "发布时间:" + DateTime.Now.ToString("d"); + } + + protected void Button1_Click(object sender, EventArgs e) + { + string t = TextArea1.Value; + if (string.IsNullOrEmpty(t)) + { + this.Label4.Text = "请输入新闻内容"; + } + else + { + this.Label4.Text = $"此新闻来自 {DropDownList1.Text} 谢谢您提交的新闻!"; + } + + } + + protected void Button2_Click(object sender, EventArgs e) + { + TextArea1.Value = null; + } + } +} \ No newline at end of file diff --git "a/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\351\241\276\345\256\242/WebForm3.aspx" "b/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\351\241\276\345\256\242/WebForm3.aspx" new file mode 100644 index 0000000000000000000000000000000000000000..321d501a1cf06822f4c803dcf90105e94224650f --- /dev/null +++ "b/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\351\241\276\345\256\242/WebForm3.aspx" @@ -0,0 +1,46 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm3.aspx.cs" Inherits="WebApplication1.WebForm3" %> + + + + + + + + + + +
+
+

顾客信息登记

+ +
+ +
+ +
+

+ +

+ +
+ +
+ +
+
+ + diff --git "a/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\351\241\276\345\256\242/WebForm3.aspx.cs" "b/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\351\241\276\345\256\242/WebForm3.aspx.cs" new file mode 100644 index 0000000000000000000000000000000000000000..45bcb60d02bbc90f10f1e59187ed6723b8cf21a6 --- /dev/null +++ "b/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\351\241\276\345\256\242/WebForm3.aspx.cs" @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace WebApplication1 +{ + public partial class WebForm3 : System.Web.UI.Page + { + protected void Page_Load(object sender, EventArgs e) + { + + } + + protected void Button1_Click(object sender, EventArgs e) + { + this.Label4.Text = "您好:当前时间是:"+DateTime.Now; + this.Label5.Text = "请确认您的信息"; + Label6.Text = $"姓名:{TextBox1.Text}
年龄:{TextBox2.Text}
爱好:{TextArea1.Value}"; + } + } +} \ No newline at end of file diff --git "a/\347\254\254\344\272\214\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/.keep" "b/\347\254\254\344\272\214\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/.keep" new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git "a/\347\254\254\344\272\214\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\345\247\223\345\220\215/WebForm2.aspx" "b/\347\254\254\344\272\214\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\345\247\223\345\220\215/WebForm2.aspx" new file mode 100644 index 0000000000000000000000000000000000000000..2360c2fe3d3e985547275f471d0c19c787aa3bce --- /dev/null +++ "b/\347\254\254\344\272\214\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\345\247\223\345\220\215/WebForm2.aspx" @@ -0,0 +1,30 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm2.aspx.cs" Inherits="WebApplication1.WebForm2" %> + + + + + + + + + +
+
+ +
+ +
+ + + + +
+ +
+ +
+ +
+
+ + diff --git "a/\347\254\254\344\272\214\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\345\247\223\345\220\215/WebForm2.aspx.cs" "b/\347\254\254\344\272\214\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\345\247\223\345\220\215/WebForm2.aspx.cs" new file mode 100644 index 0000000000000000000000000000000000000000..78ad34fb20254288eb7989cd0f4cda751d5f0099 --- /dev/null +++ "b/\347\254\254\344\272\214\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\345\247\223\345\220\215/WebForm2.aspx.cs" @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace WebApplication1 +{ + public partial class WebForm2 : System.Web.UI.Page + { + protected void Page_Load(object sender, EventArgs e) + { + + } + + protected void Button1_Click(object sender, EventArgs e) + { + Label5.Text = $"姓名:{ TextBox1.Text},年龄:{ TextBox2.Text},性别:{ DropDownList1.SelectedValue}, 爱好:{ TextBox3.Text}"; + + } + } +} \ No newline at end of file diff --git "a/\347\254\254\344\272\214\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\346\226\260\351\227\273/WebForm1.aspx" "b/\347\254\254\344\272\214\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\346\226\260\351\227\273/WebForm1.aspx" new file mode 100644 index 0000000000000000000000000000000000000000..53803617c2095d904e3e88f4e917531b1b9814c6 --- /dev/null +++ "b/\347\254\254\344\272\214\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\346\226\260\351\227\273/WebForm1.aspx" @@ -0,0 +1,52 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication1.WebForm1" %> + + + + + + + + + + +
+
+

在线新闻发布系统

+ + + 新华社 + 黎明社 + 人民日报 + 新周刊 + +
+ + + +
+ + +
+

+ + +

+
+ +
+
+ + diff --git "a/\347\254\254\344\272\214\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\346\226\260\351\227\273/WebForm1.aspx.cs" "b/\347\254\254\344\272\214\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\346\226\260\351\227\273/WebForm1.aspx.cs" new file mode 100644 index 0000000000000000000000000000000000000000..06a001e3ad3ea2594b757a5d66f7379af7b55dab --- /dev/null +++ "b/\347\254\254\344\272\214\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\346\226\260\351\227\273/WebForm1.aspx.cs" @@ -0,0 +1,36 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace WebApplication1 +{ + public partial class WebForm1 : System.Web.UI.Page + { + protected void Page_Load(object sender, EventArgs e) + { + this.Label3.Text = "发布时间:" + DateTime.Now.ToString("d"); + } + + protected void Button1_Click(object sender, EventArgs e) + { + string t = TextArea1.Value; + if (string.IsNullOrEmpty(t)) + { + this.Label4.Text = "请输入新闻内容"; + } + else + { + this.Label4.Text = $"此新闻来自 {DropDownList1.Text} 谢谢您提交的新闻!"; + } + + } + + protected void Button2_Click(object sender, EventArgs e) + { + TextArea1.Value = null; + } + } +} \ No newline at end of file diff --git "a/\347\254\254\344\272\214\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\351\241\276\345\256\242/WebForm3.aspx" "b/\347\254\254\344\272\214\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\351\241\276\345\256\242/WebForm3.aspx" new file mode 100644 index 0000000000000000000000000000000000000000..321d501a1cf06822f4c803dcf90105e94224650f --- /dev/null +++ "b/\347\254\254\344\272\214\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\351\241\276\345\256\242/WebForm3.aspx" @@ -0,0 +1,46 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm3.aspx.cs" Inherits="WebApplication1.WebForm3" %> + + + + + + + + + + +
+
+

顾客信息登记

+ +
+ +
+ +
+

+ +

+ +
+ +
+ +
+
+ + diff --git "a/\347\254\254\344\272\214\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\351\241\276\345\256\242/WebForm3.aspx.cs" "b/\347\254\254\344\272\214\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\351\241\276\345\256\242/WebForm3.aspx.cs" new file mode 100644 index 0000000000000000000000000000000000000000..45bcb60d02bbc90f10f1e59187ed6723b8cf21a6 --- /dev/null +++ "b/\347\254\254\344\272\214\346\254\241\344\275\234\344\270\232/\351\237\251\345\233\275\346\226\207/\351\237\251\345\233\275\346\226\207/\351\241\276\345\256\242/WebForm3.aspx.cs" @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace WebApplication1 +{ + public partial class WebForm3 : System.Web.UI.Page + { + protected void Page_Load(object sender, EventArgs e) + { + + } + + protected void Button1_Click(object sender, EventArgs e) + { + this.Label4.Text = "您好:当前时间是:"+DateTime.Now; + this.Label5.Text = "请确认您的信息"; + Label6.Text = $"姓名:{TextBox1.Text}
年龄:{TextBox2.Text}
爱好:{TextArea1.Value}"; + } + } +} \ No newline at end of file