{{sellerTotalView > 1 ? __("sellers", {number: sellerTotalView}) : __("seller", {number: sellerTotalView}) }}, {{numTotalView > 1 ? __("items", {number: numTotalView}) : __("item", {number: numTotalView}) }}
free FREE

Change Your Zip Code

Inventory information and delivery speeds may vary for different locations.

Location History

{{email ? __('Got it!') : __('Restock Alert')}}

We will notify you by email when the item back in stock.

Cancel
Yami

Jingdong book

ASP.NET 程序设计

{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}

ASP.NET 程序设计

{{__(":people-members", {'people': item.limit_people_count})}} {{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
Ends in
{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }} {{ itemCurrency }}{{ item.invalid_price }} {{itemDiscount}}
{{ itemCurrency }}{{ item.valid_price }}
Sale ends in
Sale will starts after Sale ends in
{{ getSeckillDesc(item.seckill_data) }}
{{ __( "Pay with Gift Card to get sale price: :itemCurrency:price", { 'itemCurrency' : itemCurrency, 'price' : (item.giftcard_price ? priceFormat(item.giftcard_price) : '0.00') } ) }} ({{ itemCurrency }}{{ priceFormat(item.giftcard_price / item.bundle_specification) }}/{{ item.unit }}) Details
Best before

Currently unavailable.

We don't know when or if this item will be back in stock.

Unavailable in your area.
Sold Out

Details

Full product details
Editer Recommend

《ASP.NET 程序设计》根据职业教育的人才培养目标和特点,内容选取以“必需和够用”为前提,突出实用、强调能力、分段培养、提高技能。内容组织上,系统性强、覆盖面广、结构清晰、简练易懂、方便自学。
教学条理清晰、思路明确,每章均配有本章导读和本章要点。
实例引导理论。以实例为载体,引领理论阐述并将知识点和职业技能点分布到各个实例当中。
针对性强,注重学生职业岗位能力培养,精心选择实际案例,突出理论联系实际。
Content Description

《ASP.NET程序设计》从项目开发需要掌握的必要技能入手组织内容。全书共分7章,主要内容包括:ASP.NET开发概述、ASP.NET服务器控件、ASP.NET内置对象、数据库与ADO.NET基础、Web窗体的数据控件、ASP.NET XML和Web Service及企业门户网站。每章都包含了大量的实例,最后一章通过综合项目——企业门户网站,详细讲解项目开发的基本流程和操作步骤,使读者全面掌握项目开发的各项技术,提高开发技能。
《ASP.NET程序设计》实例丰富,内容既系统全面,又相对独立,利用这些实例将ASP.NET技术开发中的要点与需要掌握的技能贯穿起来,因此实例具有典型性、实用性和代表性。
《ASP.NET程序设计》既注重项目开发中基本功的训练,又设计了专门的综合项目实训内容,让读者在训练中真正领会和系统掌握项目开发的思路和方法。
《ASP.NET程序设计》可作为高职高专相关专业及培训班的教材,也可作为编程爱好者和需要进行ASP.NET应用程序开发的读者的参考书。
Catalogue

前言
第1章 ASP.NET开发概述
1.1 网页设计程序概述
1.1.1 静态网页和动态网页
1.1.2 常见的网络编程语言
1.2 ASRNET的简介
1.2.1 .NET框架
1.2.2 ASENET的介绍
1.3 ASP.NET的运行环境
1.3.1 安装Web服务器IIS
1.3.2 配置主目录和启动文档
1.4 ASP.NET的开发环境
1.4.1 安装Visual Studio 2005
1.4.2 Visual Studio 2005的功能
1.5 创建简单的ASP.NET应用程序
习题1
第2章 ASP.NET服务器控件
2.1 服务器端控件示例
2.2 服务器控件的基本属性
2.3 Label控件
2.4 TextBox控件
2.5 Button控件
2.6 LinkButton控件
2.7 ImageButton按钮
2.8 Image控件
2.9 HyperLink控件
2.10 选择列表类控件
习题2
第3章 ASP.NET内置对象
3.1 内置对象概述
3.2 Page对象
3.2.1 @Page指令
3.2.2 Page对象的常用属性
3.2.3 Page对象常用的事件
3.3 Response对象
3.3.1 Response对象常用方法
3.3.2 Response对象常用属性
3.4 Request对象
3.4.1 Request对象获取客户端数据
3.4.2 Request对象获取URL查询字符串的数据
3.4.3 Request对象获取客户端浏览器信息
3.5 Server对象
3.5.1 Server.HtmlEncode方法
3.5.2 Server.MapPath方法
3.5.3 Server.UrlEncode方法
3.6 Application对象
3.6.1 Application对象的使用
3.6.2 Application对象的事件
3.7 Session对象
3.7.1 Session对象的使用
3.7.2 Session对象的事件
3.8 Cookie对象
3.8.1 Cookie对象的读/写
3.8.2 Cookie的生存周期
习题3
第4章 数据库与ADO.NET基础
4.1 数据库基础
4.1.1 数据库的基本概念
4.1.2 数据库模型
4.1.3 关系数据库
4.2 使用SQL Server 2005管理数据库
4.2.1 初步认识SQL Server 2005
4.2.2 SQL Server 2005安全管理
4.2.3 数据库的创建与删除
4.2.4 数据库的备份与还原
4.2.5 数据库的分离与附加
4.2.6 表的创建、修改与删除
4.2.7 创建数据库关系图
4.2.8 SQL语言
4.2.9 存储过程
4.3 ADO.NET数据库设计
4.3.1 数据访问技术发展概况
4.3.2 ADO.NET模型
4.3.3 NET数据提供程序
4.3.4 相关命名空间的引用
4.4 Connection连接对象
4.4.1 连接到SQL数据库
4.4.2 连接Access数据库
4.5 Command执行对象
4.5.1 Command对象的属性
4.5.2 Command对象的方法
4.6 DataReader数据访问对象
4.6.1 DataReader对象的属性
4.6.2 DataReader对象的方法
4.6.3 使用DataReader对象读取数据库
4.7 DataAdapter适配器对象
4.7.1 DataAdapter对象的属性
4.7.2 DataAdapter对象的方法
4.7.3 DataAdapter对象的事件
4.7.4 DataAdapter对象的语法格式
4.8 DataSet数据集对象
4.8.1 DataSet对象的结构
4.8.2 DataSet对象的属性、方法及事件
4.8.3 DataTable对象的常用属性、方法及事件
4.8.4 使用DataSet对象访问数据库
习题4
第5章 Web窗体的数据控件
5.1 数据控件的介绍
5.2 数据源控件的介绍
5.2.1 SQL数据源控件(SqlDataSource)
5.2.2 Access数据源控件(AccessDataSource)
5.2.3 Xml数据源控件(XmlDataSource)
5.2.4 站点导航控件(SiteMapDataSource)
5.3 数据列表控件(GridView)
5.3.1 GridView控件常用的属性、方法和事件
5.3.2 使用GridView控件实现数据的显示
5.3.3 使用GridView控件绑定数据源实现分页显示数据
5.3.4 使用GridView控件更新和删除数据
5.3.5 编写后台代码实现数据绑定
5.4 重复列表控件(Repeater)
5.4.1 Repeater控件概述
5.4.2 Repeater控件的数据绑定
5.4.3 Repeater控件的应用
5.5 数据绑定控件(FormView)
5.5.1 FormView控件概述
5.5.2 通过绑定FormView控件显示和编辑数据
5.5.3 编写后台代码实现数据绑定
5.6 数据绑定控件(DetailsView)
5.6.1 DetailsView控件简介
5.6.2 DetailsView控件的应用
5.6.3 编写后台代码实现数据绑定
5.7 数据列表控件(DataList)
5.7.1 DataList控件的介绍
5.7.2 DataList控件的应用
5.7.3 编写后台代码实现数据绑定
习题5
第6章 ASP.NETXML和Web Service
6.1 XML概述
6.1.1 XML语言
6.1.2 XML语法
6.2 XML文档操作
6.2.1 使用流模型读写XML文档
6.2.2 使用DOM模型操作XML文档
6.3 在DataSet中使用XML
6.3.1 DataSet基于XML的方法
6.3.2 将XML文档中数据读入DataSet
6.3.3 将DataSet扣数据写入XML文档
6.4 使用XML Web服务器控件
6.4.1 XML Web服务器控件
6.4.2 在XML Web服务器控件中显示XML数据
6.5 XML Web Service概述
6.5.1 XML Web Service
6.5.2 XML Web Service的组成
6.5.3 XML Web Service的运作原理
6.6 创建XML Web Service
6.7 调用XML Web Service
6.7.1 使用HTTP调用XMLWeb Service
6.7.2 使用代理调用XML Web Service
6.8 在XML Web ServiceZHONG 传送复杂数据
6.8.1 XML Web Service和DataSet
6.8.2 XML Web Service和二进制文件
习题6
第7章 企业门户网站
7.1 系统设计
7.1.1 需求分析
7.1.2 总体设计
7.1.3 功能设计
7.2 数据库设计与实现
7.2.1 表说明
7.2.2 生成news(新闻表)的SQL语句
7.3 系统公用模块的创建
7.3.1 创建CSS
7.3.2 使用数据类库
7.3.3 配置Web.config
7.4 企业门户网站前台客户端
7.4.1 首页面
7.4.2 公司介绍
7.4.3 产品天地
7.4.4 资讯中心
7.4.5 阅读新闻页面
7.4.6 人力资源页面
7.4.7 在线投票
7.5 企业门户网站管理后台
7.5.1 后台登录页面
7.5.2 后台首页面
7.5.3 新闻发布页面
7.5.4 新闻编辑页面
7.5.5 简介管理页面
7.5.6 发布产品页面
7.5.7 品管理页面
7.5.8 投票管理页面
7.5.9 会员管理页面
习题7
参考文献

Specifications

Brand Jingdong book
Brand Origin China

Disclaimer

Product packaging, specifications and price are subject to change without notice. All information about the products on our website is provided for information purposes only. Please always read labels, warnings and directions provided with the product before use.

View Full Terms of Use
Add to favorites
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}
{{__("Buy Directly")}} {{ itemCurrency }}{{ item.directly_price }}
Quantity
{{ quantity }}
{{ instockMsg }}
{{ limitText }}
{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee

Added to Cart

Keep Shopping

More to Consider

{{ item.brand_name }}

{{ item.item_name }}

{{ item.currency }}{{ item.market_price }}

{{ item.currency }}{{ item.unit_price }}

{{ item.currency }}{{ item.unit_price }}

Coupons

{{ coupon.coupon_name_new | formatCurrency }}
Clip Clipped Over
{{ getCouponDescStr(coupon) }}
{{ coupon.use_time_desc }}
Expires soon {{ formatTime(coupon.use_end_time) }}

Share this item with friends

Cancel

Yami Gift Card

Get this exclusive deal when paying with gift card

Terms and Conditions

Gift card deals are special offers for selected products;

The gift card deals will automatically be activated if a customer uses gift card balance at check out and the balance is sufficient to pay for the total price of the shopping cart products with gift card deals;

You will not be able to activate the gift card deals if you choose other payment methods besides gift card. The products will be purchased at their normal prices;

If your account balance is not enough to pay for the products with gift card deals, you can choose to reload your gift card balance by clicking on the Reload button at either shopping cart page or check out page;

Products that have gift card deals can be recognized by a special symbol showing 'GC Deal';

For any additional questions or concerns, please contact our customer service;

Yamibuy reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

Yami is committed to provide our customers with a peace of mind when purchasing from us. Most items shipped from Yamibuy.com can be returned within 30 days of receipt of shipment (For Food, Beverages, Snacks, Dry Goods, Health supplements, Fresh Grocery and Perishables Goods, within 7 days of receipt of shipment due to damages or quality issues; To ensure that every customer receives safe and high-quality products, we do not provide refunds or returns for beauty products once they have been opened or used, except in the case of quality issues; Some products may have different policies or requirements associated with them, please see below for products under special categories, or contact Yami Customer Service for further assistance).
Thank you for your understanding and support.

Learn More

Sold by Yami

Terms and Conditions of Yami E-Gift Card

If you choose “Redeem automatically” as your delivery method, your gift card balance will be reload automatically after your order has been processed successfully;

If you choose “Send to Email”as your delivery method, the card number and CVV will be sent to the email address automatically;

Any user can use the card number and CVV to redeem the gift card, please keep your gift card information safely. If you have any trouble receiving email, please contact Yami customer service;

Yami gift card can be used to purchase both Yami owned or Marketplace products;

Yami gift card will never expire;

Yami gift card balance does not have to be used up at once;

All rights reserved by Yami.

Return Policy

Gift card that has already been consumed is non-refundable.

Sold by JD@CHINA

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Sold by JD@CHINA

Service Guarantee

Yami Cross-store Free Shipping over $69
Yami 30-days Return

Yami-China FC

Yami has a consolidation warehouse in China which collects multiple sellers’ packages and combines to one order. Our Yami consolidation warehouse will directly ship the packages to your door. Cross-store free shipping over $69.

Return Policy

You may return products within 30 days upon receiving the products. Sellers take responsibilities for any wrong shipment or missing items. Packing needs to be unopened for any other than quality issues return. We promise to pack carefully, but because goods are taking long journey to destinations, simple damages to packaging may occur. Any damages not causing internal goods quality problems are not allowed to return. If you open the package and any quality problem is found, please contact customer service within three days after receipt of goods.

Shipping Information

Yami Consolidation Service Shipping Fee $9.99(Free shipping over $69)

Sellers in China will ship their orders within 1-2 business days once the order is placed. Packages are sent to our consolidation warehouse in China and combined there. Our Yami consolidation warehouse will directly ship the packages to you via UPS. The average time for UPS to ship from China to the United States is about 10 working days and it can be traced using the tracking number. Due to the pandemic, the delivery time may be delayed by about 5 days. The package needs to be signed by the guest. If the receipt is not signed, the customer shall bear the risk of loss of the package.

Sold by JD@CHINA

Service Guarantee

Free shipping over 69
Genuine guarantee

Shipping

Yami Consolidated Shipping $9.99(Free shipping over $69)


Seller will ship the orders within 1-2 business days. The logistics time limit is expected to be 7-15 working days. In case of customs clearance, the delivery time will be extended by 3-7 days. The final receipt date is subject to the information of the postal company.

Yami Points information

All items are excluding from any promotion or points events on Yamibuy.com

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Yami

Download the Yami App

Back Top

Recommended for You

About the brand

Jingdong book

为您推荐

Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折

Reviews{{'('+ commentList.posts_count + ')'}}

Have your say. Be the first to help other guests.

Write a review
{{ totalRating }} Write a review
  • {{i}} star

    {{i}} stars

    {{ parseInt(commentRatingList[i]) }}%

Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}
Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}

No related comment~

Review

Yami Yami

{{ showTranslate(commentDetails) }}Show Less

{{ strLimit(commentDetails,800) }}Show more

Show Original

{{ commentDetails.content }}

Yami
Show All

{{ formatTime(commentDetails.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ commentDetails.likes_count }} {{ commentDetails.likes_count }} {{ commentDetails.reply_count }} {{commentDetails.in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Comments{{'(' + replyList.length + ')'}}

Yami Yami

{{ showTranslate(reply) }}Show Less

{{ strLimit(reply,800) }}Show more

Show Original

{{ reply.reply_content }}

{{ formatTime(reply.reply_in_dtm) }}

{{ reply.reply_likes_count }} {{ reply.reply_likes_count }} {{ reply.reply_reply_count }} {{reply.reply_in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Cancel

That’s all the comments so far!

Write a review
How would you rate this item?

Please add your comment.

  • A nice nickname will make your comments more popular!
  • The nickname in your account will be changed to the same as here.
Thanks for your review
Our community rely on great reviews like yours to find the best of Asia.

Report

If you find this content inappropriate and think it should be removed from the Yami.com site, let us know please.

Cancel

Are you sure to delete your review?

Cancel

You’ve Recently Viewed

About the brand

Jingdong book