计算机毕业设计前台功能模块介绍:
系统主界面
在IE里运行本系统,出现系统的主界面,包括系统登陆、商品类别、商品信息显示列表、供求信息列表和留言板信息五大模块。如图:
以下是引用片段:
相关代码如下: private void Page_Load(object sender, System.EventArgs e) { // 在此处放置用户代码以初始化页面 //拼合商品类别字符串 DataTable tmpda=new DataTable(); tmpda=Sql2000DB.Get_Table("select * from splb"); if(tmpda.Rows.Count>0 ) { if(tmpda.Rows.Count % 2==0 ) { //如果记录数%2等于0将商品类别循环拼合到字符串变量中 strSplb=""; for(int i=0;i { strSplb=strSplb+""; string strTmpLx=""; strTmpLx=""+ " " + tmpda.Rows[2*i]["Lbmc"].ToString() +"
| "; strTmpLx=strTmpLx+""+ "" + tmpda.Rows[2 *i+1]["Lbmc"].ToString() +"
| "; strSplb=strSplb+strTmpLx +" "; } }
|
〖资料来源:计算机毕业论文 www.xiaoniu168.com〗
第9页为计算机毕业论文基本功能介绍......