{{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程序设计实用教程(C#版)

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

ASP.NET程序设计实用教程(C#版)

{{__(":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

本书可作为高样教材,也可作为自学和培训教材。
Content Description

本书包括10章内容,主要包括:ASP.NET概述;C#语法基础;C#面向对象编程;Web编程基础;ASP.net内建对象;服务器端控件;ASP.net网站特色编程;数据库基础;ADO.NET数据库编程技术;最后通过“基于Web的学生成绩管理系统”的开发过程,讲解WEB应用系统的设计步骤,开发技术以及技巧。
Author Description

副教授,河北经贸大学信息技术学院,副院长
Catalogue

第1章 ASP.NET概述 1
1.1 ASP.NET与.NET Framework概述 2
1.2 ASP.NET的开发语言C# 3
1.3 第一个ASP.NET程序 4
1.3.1 创建ASP.NET项目 4
1.3.2 ASP .NET网页文件构成 6
1.3.3 ASP.NET应用程序的
文件类型 8
习题1 9
第2章 C#语法基础 10
2.1 基本数据类型 11
2.2 常量与变量 12
2.2.1 常量 12
2.2.2 变量 14
2.3 表达式 15
2.3.1 算术运算符 15
2.3.2 赋值运算符 15
2.3.3 关系运算符 16
2.3.4 逻辑运算符 16
2.3.5 条件运算符 17
2.3.6 按位运算符 17
2.3.7 运算符的优先级 18
2.4 流程控制 19
2.4.1 分支 19
2.4.2 循环 21
2.5 string类型 24
2.6 数组 24
2.6.1 声明数组 24
2.6.2 数组初始化 25
2.6.3 数组的访问 26
2.6.4 foreach语句 26
2.6.5 多维数组 26
2.6.6 数组的数组 27
2.7 综合应用实例 27
习题2 30
第3章 C#面向对象程序设计基础 33
3.1 类和对象 33
3.1.1 类的定义 34
3.1.2 构造函数和析构函数 37
3.1.3 对象的使用 38
3.1.4 类的继承与多态 40
3.2 接口 43
3.2.1 接口的定义 43
3.2.2 接口的实现 44
3.3 委托与事件 46
3.3.1 委托 46
3.3.2 事件 48
3.4 集合与索引器 50
3.4.1 集合 50
3.4.2 索引器 51
3.5 面向对象的其他主题 52
3.5.1 命名空间 52
3.5.2 程序集 53
3.5.3 类库 54
习题3 54
第4章 Web编程基础 57
4.1 Web工作原理 58
4.1.1 超文本传输协议 58
4.1.2 Web服务器工作原理 58
4.2 XHTML文档的基本结构 59
4.3 XHTML常用标记 63
4.3.1 文本 64
4.3.2 列表 65
4.3.3 表格 65
4.3.4 图像 67
4.3.5 超链接 67
4.3.6 框架 69
4.3.7 HTML表单 70
4.4 JavaScript脚本程序 73
4.4.1 函数 73
4.4.2 JavaScript的 DOM对象 75
4.4.3 JavaScript的内置对象 77
4.4.4 JavaScript事件 80
4.5 样式表CSS 80
4.5.1 CSS概述 80
4.5.2 CSS基本语法 82
4.5.3 id和class选择器 82
4.5.4 CSS的常用属性 83
4.6 DHTML技术 84
4.7 综合应用实例 87
习题4 94
第5章 ASP.NET内置对象
和状态管理 96
5.1 ASP.NET内置对象 96
5.1.1 Page对象 96
5.1.2 Request对象 98
5.1.3 Response对象 101
5.1.4 Server对象 103
5.2 ASP.NET应用程序状态管理 105
5.2.1 ASP.NET的生命周期 106
5.2.2 ViewState状态 106
5.2.3 查询字符串 108
5.2.4 Cookie 109
5.2.5 Session状态 111
5.2.6 Application状态 113
5.3 状态管理案例 114
习题5 120
第6章 ASP.NET中的服务器
端控件 121
6.1 服务器控件概述 122
6.2 HTML服务器控件简介 122
6.3 常用Web标准服务器控件 123
6.3.1 Label控件 124
6.3.2 TextBox控件 124
6.3.3 ImageMap控件 126
6.3.4 Button、LinkButton
和ImageButton控件 131
6.3.5 CheckBox控件
和CheckBoxList控件 135
6.3.6 RadioButton
和RadioButtonList控件 137
6.3.7 DropDownList、ListBox
和BulletedList控件 138
6.3.8 Literal和Panel控件 140
6.3.9 MultiView和View控件 142
6.3.10 FileUpload控件 143
6.3.11 Calendar控件 146
6.4 验证控件 149
6.4.1 RequiredFieldValidator
控件 150
6.4.2 CompareValidator控件 150
6.4.3 RangeValidator控件 151
6.4.4 RegularExpressionValidator
控件 152
6.4.5 CustomValidator控件 154
6.4.6 ValidationSummary控件 154
6.5 导航控件 155
6.5.1 站点地图 155
6.5.2 SiteMapPath控件 156
6.5.3 Menu控件 159
6.5.4 TreeView控件 168
6.6 用户控件 173
6.6.1 用户控件概述 173
6.6.2 用户控件的创建 174
6.7 自定义控件
6.7.1 自定义控件概述 179
6.7.2 自定义控件的创建和使用 179
6.8 综合应用实例 185
习题6 197
第7章 ASP.NET母版页和主题 198
7.1 母版页 199
7.1.1 创建母版页 199
7.1.2 创建内容页 205
7.1.3 母版页的运行方法 209
7.1.4 限定母版页的范围 209
7.2 主题与皮肤 210
7.2.1 主题和皮肤 210
7.2.2 应用主题 212
7.2.3 皮肤文件的分类 214
习题7 215
第8章 数据库基础 216
8.1 数据库简介 217
8.2 创建数据库、表 218
8.2.1 创建管理数据库 219
8.2.2 创建管理数据库中的表 222
8.2.3 添加、修改、删除数据 224
8.3 常用SQL查询语句 225
8.3.1 简单查询 225
8.3.2 统计查询 226
8.3.3 多表连接查询 226
8.3.4 在表中存储查询结果 227
8.4 视图与存储过程 227
8.4.1 视图 227
8.4.2 存储过程 228
8.5 SQL Server数据库安全管理 231
8.5.1 管理登录账户 233
8.5.2 管理数据库用户 234
8.5.3 管理权限 234
习题8 235
第9章 ADO.NET数据库开发
技术 237
9.1 ADO.NET概述 237
9.1.1 ADO.NET对象模型结构 237
9.1.2 ADO.NET数据库驱动 239
9.2 ADO.NET常用对象 239

9.2.1 Connection对象 239
9.2.2 Command对象 241
9.2.3 Parameter对象 242
9.2.4 DataReader对象 244
9.2.5 DataAdapter对象 246
9.2.6 DataSet对象 247
9.2.7 DataView对象 250
9.3 服务器端数据访问控件 250
9.3.1 SqlDataSource数据源控件 250
9.3.2 DropDownList控件 255
9.3.3 GridView控件 256
9.3.4 DetailsView控件 270
9.4 综合应用实例 274
习题9 281
第10章 基于Web的学生成绩管理
系统 283
10.1 系统功能设计 284
10.1.1 系统功能模块 284
10.1.2 系统主要流程 285
10.1.3 系统架构设计 285
10.2 数据库设计 286
10.3 数据库操作类设计 290
10.4 页面布局与风格设计 293
10.4.1 样式表CSS 293
10.4.2 主题 296
10.4.3 母版页 296
10.5 系统详细设计与实现 302
10.5.1 登录模块 302
10.5.2 成绩录入模块 305
10.5.3 学生成绩查询模块 315
10.5.4 学生信息管理模块 322
习题10 329
参考文献 330

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