• 大小: 3.86MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-09-12
  • 语言: C#
  • 标签: asp.net  

资源简介

ASP.NET 物流信息管理系统(源码+数据库)! 值得下载看看!资源免费,大家分享!! 更多免费资源 http://ynsky.download.csdn.net/

资源截图

代码片段和文件信息

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;
namespace Web
{
    public partial class About : System.Web.UI.Page
    {
        protected void Page_Load(object sender EventArgs e)
        {
            bindpage();
        }
        private void bindpage()
        {
             if (!IsPostBack)
            {

if (DBFun.ishtm(“0“))
{
//Response.Write(“000“);
}
else
{
//Response.Write(“1000“);
}
string siteurl=DBFun.isurl();
//Response.Write(siteurl);
                string strqry;
                LeftContents.strqryp = “Select * From T_About order by id asc“;
                LeftContents.strfieldp = “AboutType“;
                LeftContents.strurlp = “About.aspx?id=“;
                LeftContents.strmytitlep = “关于我们“;

                if (Request.QueryString.Count == 0)
                {
                    strqry = “Select top 1 * From T_About “;
                }
                else
                {
                    strqry = string.Format(“Select * From T_About where id={0} order by id desc“ Convert.ToInt32(Request.QueryString[“id“]));
                }
                DataRow drw = DBFun.GetDataRow(strqry);
                if (drw == null)
                {
                    lbl_Contents.Text = “请在后台修改内容!“;
                    Master.Page.title = Application[“siteName“].ToString() + “ - 关于我们“;
                    return;
                }
                
                lbl_Contents.Text = drw[“contents“].ToString();
                lbl_title.Text = drw[“Abouttype“].ToString();
                this.title  = drw[“abouttype“].ToString();
            }
        }
        protected string GetLimitChar(string strChar int intLength)
        {
            //取得自定义长度的字符串
            if (strChar.Length > intLength)
            { return strChar.Substring(0 intLength); }
            else
            { return strChar; }

        }

    }
}

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

----------- ---------  ---------- -----  ----

              9855783                    1362


评论

共有 条评论