资源预览内容
第1页 / 共9页
第2页 / 共9页
第3页 / 共9页
第4页 / 共9页
第5页 / 共9页
第6页 / 共9页
第7页 / 共9页
第8页 / 共9页
第9页 / 共9页
亲,该文档总共9页全部预览完了,如果喜欢就下载吧!
资源描述
Web程序设计第3章课后题注:课后题共7题(除第一题和第九题),其中5和8由于还有些问题没有解决,就没有将答案附上。这里的答案仅供参考,希望在上机之前能自己练习一下。程序有很多地方可以改,不要照搬。(2)设计一个网页,其中包含TextBox和Button控件各一个。当在TextBox中输入一个成绩,再单击Button控件时在网页上输出相应的等级信息。【.aspx】 请输入一个成绩 待显示 【.aspx.cs】using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;namespace homework_chap3 public partial class question2 : System.Web.UI.Page protected void btmSubmit_Click(object sender, EventArgs e) int iInput = int.Parse(TextBox1.Text); if (iInput 100) Label1.Text = 请输入正确的分数; else if(iInput = 90) Label1.Text = 优秀; else if (iInput = 80) Label1.Text = 良好; else if (iInput = 60) Label1.Text = 及格; else if (iInput = 0) Label1.Text = 不及格; else Label1.Text = 请输入正确的分数; 【效果】(3)在网页上输出九九乘法表【.aspx.cs】(.aspx源文件可以不作处理)using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;namespace homework_chap3 public partial class question3 : System.Web.UI.Page protected void Page_Load(object sender, EventArgs e) for (int i=1; i= 9; i+) for (int j = 1; j = i; j+) Response.Write(i + * + j + = + (i * j) + ); Response.Write(); 【效果】(4)在网页上输出如下形状:A BBB CCCCC DDDE【.aspx.cs】(.aspx源文件可以不作处理)using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;namespace homework_chap3.questions public partial class question4 : System.Web.UI.Page protected void Page_Load(object sender, EventArgs e) String s = A, B, C, D, E ; for (int i = 1; i = 3; i+) for (int j = 1; j = 3 - i; j+) Response.Write( ); for(int k = 1; k = 2*i-1; k+) Response.Write(si-1); Response.Write(); for (int i = 1; i 3; i+) for (int j = 1; j = i; j+) Response.Write( ); for (int k = 1; k = 5 - 2*i; k+) Response.Write(si + 2); Response.Write(); 【效果】(6)设计一个网页,其中包含两个TextBox和一个Button控件。当在TextBox中各输入一个数值,再单击Button控件时在网页上输出两者相除的数值。(要求包含异常处理)【.aspx】 输入一个除数: 输入一个被除数: 答案 【.aspx.ce】using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;namespace homework_chap3.questions public partial class
网站客服QQ:2055934822
金锄头文库版权所有
经营许可证:蜀ICP备13022795号 | 川公网安备 51140202000112号