• 大小: 1.29M
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2021-01-30
  • 语言: ASP
  • 标签: 百度  网站    

资源简介

模仿百度知道做的网站

资源截图

代码片段和文件信息

using System;
using System.Linq;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class Answer : Page
{
    private readonly DataClassesDataContext DC = new DataClassesDataContext();

    public string QuestionCode
    {
        get
        {
            if (ViewState[“QuestionCode“] == null)
                return ““;
            return ViewState[“QuestionCode“].ToString();
        }
        set { ViewState[“QuestionCode“] = value; }
    }

    public string AnswerCode
    {
        get
        {
            if (ViewState[“AnswerCode“] == null)
                return ““;
            return ViewState[“AnswerCode“].ToString();
        }
        set { ViewState[“AnswerCode“] = value; }
    }

    public string UserName
    {
        get

评论

共有 条评论