91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

資源簡介

網(wǎng)上購物 ASP.NET網(wǎng)頁設(shè)計與網(wǎng)站開發(fā)(馬駿 黨蘭學(xué) 杜瑩)

資源截圖

代碼片段和文件信息

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?OnlineShop.siteClass;

namespace?OnlineShop
{
????public?partial?class?_default?:?System.Web.UI.Page
????{
????????protected?void?Page_Load(object?sender?EventArgs?e)
????????{
????????????if?(!Page.IsPostBack)
????????????{
????????????????//初始化下商品類別下拉列表,此代碼僅首次加載執(zhí)行
????????????????DropDownListGoodsType.AppendDataBoundItems?=?true;
????????????????ListItem?item?=?new?ListItem(Common.strDefaultItem?“-1“);
????????????????DropDownListGoodsType.Items.Add(item);
????????????????DataAccess?myDA?=?new?DataAccess();
????????????????DataSet?dstGoodsType?=?myDA.GetAllGoodsType();
????????????????DropDownListGoodsType.DataSource?=?dstGoodsType.Tables[0];
????????????????DropDownListGoodsType.DataTextField?=?“goodsTypeName“;
????????????????DropDownListGoodsType.DataValueField?=?“goodsTypeID“;
????????????????DropDownListGoodsType.DataBind();

????????????????//顯示商品
????????????????getGoods();

????????????}
????????}
???????
????????private?void?getGoods()
????????{
????????????//獲取數(shù)據(jù)
????????????DataAccess?myDA?=?new?DataAccess();
????????????DataSet?dstGoods?=?myDA.GetGoodsByNameAndType(TextBoxGoodsName.Text.Trim()?int.Parse(DropDownListGoodsType.SelectedValue));

????????????//實現(xiàn)分頁
????????????PagedDataSource?objPds?=?new?PagedDataSource();
????????????objPds.DataSource?=?dstGoods.Tables[0].DefaultView;
????????????objPds.AllowPaging?=?true;
????????????objPds.PageSize?=?2;
????????????int?CurPage?=?Convert.ToInt32(this.LabelPage.Text);
????????????objPds.CurrentPageIndex?=?CurPage?-?1;
????????????if?(objPds.CurrentPageIndex?????????????{
????????????????objPds.CurrentPageIndex?=?0;
????????????}

????????????//只有一頁時禁用上頁、下頁按鈕
????????????if?(objPds.PageCount?==?1)
????????????{????????????????
????????????????linkButtonPrev.Enabled?=?false;
????????????????linkButtonNext.Enabled?=?false;????????????????
????????????}
????????????else//多頁時
????????????{
????????????????//為第一頁時
????????????????if?(CurPage?==?1)
????????????????{????????????????????
????????????????????linkButtonPrev.Enabled?=?false;
????????????????????linkButtonNext.Enabled?=?true;????????????????????
????????????????}
????????????????//是最后一頁時
????????????????if?(CurPage?==?objPds.PageCount)
????????????????{????????????????????
????????????????????linkButtonPrev.Enabled?=?true;
????????????????????linkButtonNext.Enabled?=?false;????????????????????
????????????????}
????????????}

????????????this.LabelTotalPage.Text?=?Convert.ToString(objPds.PageCount);????????????
????????????DataListGoods.DataSource?=?objPds;
????????????DataListGoods.DataBind();
????????}

????????//搜索
????????protected?void?ButtonSearch_Click(object?sender?Even

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----

?????文件????2293760??2010-01-05?16:56??第12章源程序\OnlineShop\App_Data\OnlineShop.mdf

?????文件?????573440??2010-01-05?16:56??第12章源程序\OnlineShop\App_Data\OnlineShop_log.ldf

?????文件?????782336??2007-03-02?00:50??第12章源程序\OnlineShop\bin\AjaxControlToolkit.dll

?????文件?????638464??2007-03-02?00:50??第12章源程序\OnlineShop\bin\AjaxControlToolkit.pdb

?????文件???????4608??2007-03-02?00:50??第12章源程序\OnlineShop\bin\ar\AjaxControlToolkit.resources.dll

?????文件???????4608??2007-03-02?00:50??第12章源程序\OnlineShop\bin\de\AjaxControlToolkit.resources.dll

?????文件???????4608??2007-03-02?00:50??第12章源程序\OnlineShop\bin\es\AjaxControlToolkit.resources.dll

?????文件???????4608??2007-03-02?00:50??第12章源程序\OnlineShop\bin\fr\AjaxControlToolkit.resources.dll

?????文件???????4608??2007-03-02?00:50??第12章源程序\OnlineShop\bin\he\AjaxControlToolkit.resources.dll

?????文件???????4608??2007-03-02?00:50??第12章源程序\OnlineShop\bin\hi\AjaxControlToolkit.resources.dll

?????文件???????4608??2007-03-02?00:50??第12章源程序\OnlineShop\bin\it\AjaxControlToolkit.resources.dll

?????文件???????4608??2007-03-02?00:50??第12章源程序\OnlineShop\bin\ja\AjaxControlToolkit.resources.dll

?????文件???????4608??2007-03-02?00:50??第12章源程序\OnlineShop\bin\ko\AjaxControlToolkit.resources.dll

?????文件??????53248??2010-01-02?14:09??第12章源程序\OnlineShop\bin\onlineshop.dll

?????文件?????194048??2010-01-02?14:09??第12章源程序\OnlineShop\bin\onlineshop.pdb

?????文件???????4608??2007-03-02?00:50??第12章源程序\OnlineShop\bin\pt\AjaxControlToolkit.resources.dll

?????文件???????4608??2007-03-02?00:50??第12章源程序\OnlineShop\bin\ru\AjaxControlToolkit.resources.dll

?????文件???????4608??2007-03-02?00:50??第12章源程序\OnlineShop\bin\zh-CHS\AjaxControlToolkit.resources.dll

?????文件???????4608??2007-03-02?00:50??第12章源程序\OnlineShop\bin\zh-CHT\AjaxControlToolkit.resources.dll

?????文件???????5922??2007-05-03?17:31??第12章源程序\OnlineShop\default.aspx

?????文件???????4112??2007-05-07?21:16??第12章源程序\OnlineShop\default.aspx.cs

?????文件???????4526??2007-05-02?23:11??第12章源程序\OnlineShop\default.aspx.designer.cs

?????文件???????1541??2007-06-06?16:23??第12章源程序\OnlineShop\goodsImage\books.jpg

?????文件???????3212??2010-01-05?16:55??第12章源程序\OnlineShop\goodsImage\computer1.jpg

?????文件???????3170??2010-01-05?16:55??第12章源程序\OnlineShop\goodsImage\computer2.jpg

?????文件???????3382??2010-01-03?16:37??第12章源程序\OnlineShop\goodsImage\computer4.jpg

?????文件???????7696??2007-06-08?09:38??第12章源程序\OnlineShop\goodsImage\product.jpg

?????文件???????1291??2007-03-31?13:40??第12章源程序\OnlineShop\goodsImage\search.gif

????..A.SH.?????22528??2007-06-10?08:57??第12章源程序\OnlineShop\goodsImage\Thumbs.db

?????文件?????105542??2007-05-03?16:46??第12章源程序\OnlineShop\goodsImage\Winter.jpg

............此處省略118個文件信息

評論

共有 條評論

相關(guān)資源