• 大小: 2.67MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-10-27
  • 语言: C#
  • 标签: 旅游网站  

资源简介

实现了旅游信息的景点资源、旅游线路、交通线路、酒店宾馆及在线预订酒店、在线留言等功能,同时具备强大的普通用户后台功能,方便旅游爱好者与管理员有良好的沟通与交流。

资源截图

代码片段和文件信息

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;
using System.Data.SqlClient;

public partial class Comment : System.Web.UI.Page
{
    protected void Page_Load(object sender EventArgs e)
    {
        if (!IsPostBack)
        {
            rptList.DataSource = DB.getDataTable(“select * from Comment order by CommentId desc“);
            rptList.DataBind();

            if (Request.Cookies[“memberinfo“] != null)
            {
                txtCommentUser.Text = Server.UrlDecode(Request.Cookies[“memberinfo“][“UserName“]);
            }
        }
    }

    protected void btnSubmitComment_Click(object sender EventArgs e)
    {
        string username = txtCommentUser.Text.Trim();
        string content = txtCommentContent.Text.Trim();
        if (!string.IsNullOrEmpty(username) && !string.IsNullOrEmpty(content))
        {
            string sql = “insert into Comment(UserNameContent) “;
            sql += “values(‘“ + username + “‘‘“ + content + “‘)“;

            SqlConnection cn = DB.OpenConnection();
            SqlCommand cmd = new SqlCommand(sql cn);
            cmd.ExecuteNonQuery();
            cn.Close();
            cn.Dispose();

            Common.ShowMessage(this.Page “留言成功。“ ““ “comment.aspx“);
        }
        else
        {
            javascriptHelper.Alert(“留言人和留言内容不能为空。“);
            return;
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       5993  2012-04-04 19:29  ASP.NET旅游网站\Program\App_Code\Common.cs

     文件       3901  2011-04-23 15:09  ASP.NET旅游网站\Program\App_Code\CookieHelper.cs

     文件       3791  2011-04-23 11:43  ASP.NET旅游网站\Program\App_Code\CutString.cs

     文件       6909  2012-11-21 16:12  ASP.NET旅游网站\Program\App_Code\DB.cs

     文件       6183  2012-04-04 10:02  ASP.NET旅游网站\Program\App_Code\EncryptHelper.cs

     文件       7382  2012-04-04 10:02  ASP.NET旅游网站\Program\App_Code\javascriptHelper.cs

     文件    1310720  2013-04-09 11:20  ASP.NET旅游网站\Program\App_Data\TourDB_Data.MDF

     文件    1048576  2013-04-09 11:20  ASP.NET旅游网站\Program\App_Data\TourDB_Log.LDF

     文件     110592  2009-09-09 00:00  ASP.NET旅游网站\Program\Bin\AspNetPager.dll

     文件         74  2010-12-22 17:29  ASP.NET旅游网站\Program\Bin\AspNetPager.dll.refresh

     文件      36864  2008-01-25 10:30  ASP.NET旅游网站\Program\Bin\FredCK.FCKeditorV2.dll

     文件         54  2012-04-04 15:15  ASP.NET旅游网站\Program\Bin\FredCK.FCKeditorV2.dll.refresh

     文件      73728  2011-04-23 11:45  ASP.NET旅游网站\Program\Bin\Vincent.AutoAuthCode.dll

     文件        106  2011-04-23 11:45  ASP.NET旅游网站\Program\Bin\Vincent.AutoAuthCode.dll.refresh

     文件       2459  2012-04-05 09:49  ASP.NET旅游网站\Program\Comment.aspx

     文件       1662  2012-04-05 09:49  ASP.NET旅游网站\Program\Comment.aspx.cs

     文件        255  2012-04-03 21:47  ASP.NET旅游网站\Program\Controls\Foot.ascx

     文件       1197  2012-04-05 09:17  ASP.NET旅游网站\Program\Controls\Head.ascx

     文件      11721  2012-04-05 09:17  ASP.NET旅游网站\Program\css\style.css

     文件        120  2013-01-02 13:25  ASP.NET旅游网站\Program\Default.aspx

     文件       1032  2012-04-05 09:27  ASP.NET旅游网站\Program\Default.aspx.cs

     文件        236  2011-10-15 16:30  ASP.NET旅游网站\Program\fckeditor\editor\css\behaviors\disablehandles.htc

     文件        822  2011-10-15 16:30  ASP.NET旅游网站\Program\fckeditor\editor\css\behaviors\showtableborders.htc

     文件       2082  2011-10-15 16:30  ASP.NET旅游网站\Program\fckeditor\editor\css\fck_editorarea.css

     文件       2549  2011-10-15 16:30  ASP.NET旅游网站\Program\fckeditor\editor\css\fck_internal.css

     文件       1514  2011-10-15 16:30  ASP.NET旅游网站\Program\fckeditor\editor\css\fck_showtableborders_gecko.css

     文件        184  2011-10-15 16:30  ASP.NET旅游网站\Program\fckeditor\editor\css\images\fck_anchor.gif

     文件        599  2011-10-15 16:30  ASP.NET旅游网站\Program\fckeditor\editor\css\images\fck_flashlogo.gif

     文件        105  2011-10-15 16:30  ASP.NET旅游网站\Program\fckeditor\editor\css\images\fck_hiddenfield.gif

     文件         54  2011-10-15 16:30  ASP.NET旅游网站\Program\fckeditor\editor\css\images\fck_pagebreak.gif

............此处省略382个文件信息

评论

共有 条评论