📄 comsite.aspx.cs
字号:
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
using WebApplication8.firstPage;
namespace WebApplication8.company
{
/// <summary>
/// Summary description for index.
/// </summary>
public class comSite : System.Web.UI.Page
{
protected System.Web.UI.HtmlControls.HtmlTableCell view;
protected System.Web.UI.HtmlControls.HtmlTableCell prolist;
protected System.Web.UI.HtmlControls.HtmlTableCell survey;
protected System.Web.UI.HtmlControls.HtmlTableCell description;
private void Page_Load(object sender, System.EventArgs e)
{
string html;
Connection conn = new Connection(Application["market"].ToString());
SqlDataReader reader = conn.execute("select * from Company where studentNO = '" + Request.QueryString["studentNO"] + "'");
if( reader.Read() )
{
html = "公司名称 :"+reader["comName"].ToString()+"<br>";
html += "公司成立时间:"+reader["createTime"].ToString()+"<br>";
html += "公司创建人 :"+reader["realName"].ToString()+"<br>";
html += "注册资金 :"+reader["regAccount"].ToString()+"<br>";
view.InnerHtml = html;
html = reader["description"].ToString() + "<br>";
description.InnerHtml = html;
}// Put user code to initialize the page here
reader.Close();
html = "";
reader = conn.execute("select * from Product where studentNO='"+Request["studentNO"]+"'");
int count = 15;
while(reader.Read()&&count>=0)
{
html += "产品名称: "+reader["productName"].ToString()+"<br>";
}
prolist.InnerHtml = html;
reader.Close();
html = "";
reader = conn.execute("select * from Survey where studentNO='" + Request["studentNO"] +"' and state = '进行中'");
while( reader.Read())
{
html += "<a href='showSurvey.aspx?id=" + reader["id"] + "'>" + reader["title"] + "</a><br><br>";
}
survey.InnerHtml = html;
reader.Close();
// Put user code to initialize the page here
}
#region Web Form Designer generated code
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: This call is required by the ASP.NET Web Form Designer.
//
InitializeComponent();
base.OnInit(e);
}
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -