資源簡介
1.家教管理系統(tǒng)數(shù)據(jù)庫的設(shè)計。
2.教員信息注冊和查詢。
3.需求信息的發(fā)布,預(yù)訂和管理。
4.在線咨詢和回復(fù)信息。
5.實現(xiàn)學員和教師的在線交流。
代碼片段和文件信息
using?System;
using?System.Data;
using?System.Configuration;
using?System.Collections;
using?System.Web;
using?System.Web.Security;
using?System.Web.UI;
using?System.Web.UI.WebControls;
using?System.Web.UI.WebControls.WebParts;
using?System.Web.UI.HtmlControls;
public?partial?class?AddTopic?:?System.Web.UI.Page
{
????protected?void?Page_Load(object?sender?EventArgs?e)
????{
????????this.title?=?“大學生家教平臺網(wǎng)站“;
????????if?(!IsPostBack)
????????{
????????????if?(Session[“UserName“]?==?null)
????????????{
????????????????Alert.AlertAndRedirect(“對不起您還沒有登錄“?“Default.aspx“);
????????????}
????????}
????}
????protected?void?Button1_Click(object?sender?EventArgs?e)
????{
????????SqlHelper?data?=?new?SqlHelper();
????????data.RunSql(“insert?into?Topic(TopicAddUserContent)values(‘“?+?tb_title.Text?+?“‘‘“?+?Session[“UserName“].ToString()?+?“‘‘“?+?ArticleContent.Value?+?“‘)“);
????????Alert?js?=?new?Alert();
????????js.Alertjs(“發(fā)布成功“);
????????Response.Redirect(“BBS.aspx“);
????}
}
評論
共有 條評論