版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、计算机网络应用实习报告班级: 网络工程11002 姓名: 吴超 学号: 201006421 实习日期: 2012.12.10-2012.12.19 1、课程实习的目的和要求: 实验目的:计算机网络课程设计是计算机网络课程后的一个重要的教学环节,是对学生进行的一次较为全面的网络应用程序设计训练。其基本目的是:(1)培养学生理论联系实际的设计思想,训练综合运用所学的基础理论知识,结合生产实际分析和解决网络应用中问题的能力,从而使基础理论知识得到巩固和加深。(2)学习掌握网络应用系统的一般设计过程和方法。(3)熟悉并掌握运用网络应用中的B/S模式。实验要求:(1)合理设计系统框图和网站结构图。(2)
2、根据系统框图设计,编写网页及程序代码。(3)程序设计时,要求使用Java或者.Net语言进行开发,完成课设题目的全部内容。(4)完成课程设计报告。2、 课程实习环境: 笔记本一台(win7 旗舰版,内安装有IIS);Dreamweaver cs6.0软件;Photoshop cs6.0软件;flash cs6.0软件;Sqlserver 2010数据库; Visual Studio 2010;3、 系统框图:4、 系统源码:Default.aspx(登入界面): 新?闻?发?布? body background-image :url(Images/2.jpg) div margin-top:3
3、20px; margin-left:680px; 欢?迎?你?的?到?来?:阰 用?户名?(UserName): 密码?(辍assword)?: Default.aspx.cs:using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using System.Data;using System.Data.SqlClient;namespace 新?闻?发?布? public partia
4、l class Default : System.Web.UI.Page protected void Page_Load(object sender, EventArgs e) protected void Button1_Click(object sender, EventArgs e) string str = Data Source=.;Initial Catalog=新?闻?发?布?;User ID=jerry;Password=litian;Integrated Security=True; SqlConnection con = new SqlConnection(str); c
5、on.Open(); string select = select Name,Password from tb_User where Name=+txtAdmin.Text.Trim() + and PassWord= + txtpwd.Text.Trim()+ ; SqlCommand cnd = new SqlCommand(select, con); SqlDataAdapter dataAdapter = new SqlDataAdapter(); dataAdapter.SelectCommand = cnd; DataSet myDs = new DataSet(); dataAd
6、apter.Fill(myDs); DataTable mytable = myDs.Tables0; if (myDs != null & myDs.Tables.Count = 0 & myDs.Tables0.Rows.Count 0) SessionName = mytable.Rows00.ToString(); SessionPassword = mytable.Rows01.ToString(); if (SessionName.ToString() = txtAdmin.Text.Trim() & SessionPassword.ToString() = txtpwd.Text
7、.Trim() Response.Redirect(HomePage.aspx); else Response.Redirect(Register.aspx); con.Close(); protected void Button2_Click(object sender, EventArgs e) Response.Redirect(Register.aspx); Register.aspx(注册界面): 新?闻?发?布? body background-image :url(images/register.jpg) div margin-left :150px;margin-top :15
8、0px; font-size:large 登?入?失骸?败悒?请?先注痢?册:阰 用?户注痢?册:阰 用?户号?(辍D)?:阰 用?户名?(辍serName)?:阰 密码?(辍assword)?:阰 确?认?密码?(辍assword)?:阰 邮?箱?(辍mail)?:阰 电?话号?码?(辍el)?:阰 提?交?(Sumit): Register.aspx.cs:using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.
9、UI.WebControls;using System.Data;using System.Data.SqlClient;namespace 新?闻?发?布? public partial class Register : System.Web.UI.Page protected void Page_Load(object sender, EventArgs e) protected void Button1_Click(object sender, EventArgs e) string str = Data Source=.;Initial Catalog=新?闻?发?布?;User ID
10、=jerry;Password=litian;Integrated Security=True; SqlConnection con = new SqlConnection(str); con.Open(); string select = insert into tb_User(ID,Name,Password,Email,Tel) values(+TextBox1.Text.Trim()+,+TextBox2.Text.Trim()+,+TextBox3.Text.Trim()+,+TextBox5.Text.Trim()+,+TextBox6.Text.Trim()+); SqlComm
11、and cnd = new SqlCommand(select, con); cnd.ExecuteNonQuery(); Response.Redirect(Default.aspx); con.Close(); MasterPage.master(母版): Head.ascx: .td1 height: 35px; width: 19%; font-size: 12px; .td2 width: 9%; height: 35px; font-size :15px; 新?闻?发?布?系统? 首骸?页? 时骸?事? 经-济? 军事? 科?技? 生?活? 社?会 体?育畒 娱?乐? 输?入?关?
12、键字?:阰 时骸?事? 经-济? 军事? 科?技? 生?活? 社?会 体?育畒 娱?乐? Head.ascx.cs:using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using System.Data;using System.Data.SqlClient;namespace 新?闻?发?布?.UserControl public partial class head : Syst
13、em.Web.UI.UserControl protected void Page_Load(object sender, EventArgs e) protected void Button1_Click(object sender, EventArgs e) if (DropDownList1.SelectedIndex = 0) Response.Redirect(时骸?事?.aspx); if (DropDownList1.SelectedIndex = 1) Response.Redirect(经-济?.aspx); if (DropDownList1.SelectedIndex =
14、 2) Response.Redirect(军事?.aspx); if (DropDownList1.SelectedIndex = 3) Response.Redirect(科?技?.aspx); if (DropDownList1.SelectedIndex = 4) Response.Redirect(生?活?.aspx); if (DropDownList1.SelectedIndex = 5) Response.Redirect(社?会.aspx); if (DropDownList1.SelectedIndex = 6) Response.Redirect(体?育畒.aspx);
15、if (DropDownList1.SelectedIndex = 7) Response.Redirect(娱?乐?.aspx); Homapage.aspx(主页): asp:SqlDataSource ID=SqlDataSource1 runat=server ConnectionString= SelectCommand=SELECT ID, Title, Categories, IssueDate FROM tb_News 经济.aspx: asp:SqlDataSource ID=SqlDataSource1 runat=server ConnectionString= SelectCommand=SELECT ID, Title, Categories, IssueDate FROM tb_News where Categories=经-济? InsertCommand=insert into tb_News (ID,Title,Categories,IssueDate
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2024民事诉讼委托代理合同
- 2024工程维修合同样本
- 2024种猪销售合同范文
- 2024广告互换合同范文
- 2024个人汽车的租赁合同范本
- 权威借款合同范文汇编
- 2024的进出口贸易合同范文
- 品牌代理合作协议
- 2024小产权房买卖合同模板2
- 2024临时工合同协议书关于临时工的协议书
- 国开(甘肃)2024年春《地域文化(专)》形考任务1-4终考答案
- 档案整理及数字化服务方案(技术标 )
- 建筑桩基技术规范 JGJ942008
- C站使用说明JRC
- 习作:推荐一个好地方 推荐ppt课件
- 角的度量 华应龙(课堂PPT)
- 公路铣刨机整机的设计含全套CAD图纸
- 机器人学课程教学大纲
- 浙江世贸君澜酒店集团介绍
- GHTF—质量管理体系--过程验证指南中文版
- 铝及铝合金焊接作业指导书
评论
0/150
提交评论