0

0

Tailspin Spyworks指南第八讲:其它页面,异常处理、总结_html/css_WEB-ITnose

php中文网

php中文网

发布时间:2016-06-24 12:06:27

|

1537人浏览过

|

来源于php中文网

原创

Part 8: Final Pages, Exception Handling, and Conclusion 其它页面、异常处理、总结

By  Joe Stagner |July 21, 2010

Print

tailspin spyworks demonstrates how extraordinarily simple it is to create powerful, scalable applications for the .net platform. it shows off how to use the great new features in asp.net 4 to build an online store, including shopping, checkout, and administration.

通过Tailspin Spyworks 演示在.NET平台创建功能强大,结构良好的应用程序有多么简单。演示如何使用ASP.NET 4的新特性创建一个包含购物、结算和管理功能的在线网店。

This tutorial series details all of the steps taken to build the Tailspin Spyworks sample application.  Part 8 adds a contact page, about page, and exception handling.  This is the conclusion of the series.

本系列指南对构建案例程序的每一步做了详细的解释。第八部分添加联系页面、关于页面和异常处理,也是对整个系列的总结。

联系页面(从Asp.net发送Email)

Create a new page named ContactUs.aspx
创建名为ContactUs.aspx的页面

立即学习前端免费学习笔记(深入)”;

Using the designer, create the following form taking special note to include the ToolkitScriptManager and the Editor control from the AjaxdControlToolkit. .
使用Ajax控件包设计如下页面:

Double click on the "Submit" button to generate a click event handler in the code behind file and implement a method to send the contact information as an email.
双击“提交”按钮,生成点击事件处理函数,在其中完成发送email的功能。

protected void ImageButton_Submit_Click(object sender, ImageClickEventArgs e)  {  try     {    MailMessage mMailMessage = new MailMessage();    mMailMessage.From = new MailAddress(HttpUtility.HtmlEncode(TextBoxEmail.Text));    mMailMessage.To.Add(new MailAddress("Your Email Here"));     // mMailMessage.Bcc.Add(new MailAddress(bcc));    // mMailMessage.CC.Add(new MailAddress(cc));   mMailMessage.Subject = "From:" + HttpUtility.HtmlEncode(TextBoxYourName.Text) + "-" +                                     HttpUtility.HtmlEncode(TextBoxSubject.Text);   mMailMessage.Body = HttpUtility.HtmlEncode(EditorEmailMessageBody.Content);    mMailMessage.IsBodyHtml = true;   mMailMessage.Priority = MailPriority.Normal;   SmtpClient mSmtpClient = new SmtpClient();   mSmtpClient.Send(mMailMessage);   LabelMessage.Text = "Thank You - Your Message was sent.";   } catch (Exception exp)   {   throw new Exception("ERROR: Unable to Send Contact - " + exp.Message.ToString(), exp);   }}

This code requires that your web.config file contain an entry in the configuration section that specifies the SMTP server to use for sending mail.
此代码需要在Web.config文件中包含指明配置,在配置中设置发送邮件使用的SMTP服务器。

                                                                

关于页面

Create a page named AboutUs.aspx and add whatever content you like.
创建名为AboutUs.aspx的页面,添加你想添加的任何内容。

全局异常处理

Lastly, throughout the application we have thrown exceptions and there are unforeseen circumstances that cold also cause unhandled exceptions in our web application.
在程序中会出现无法预期的异常,需要添加异常处理。

一览AI绘图
一览AI绘图

一览AI绘图是一览科技推出的AIGC作图工具,用AI灵感助力,轻松创作高品质图片

下载

We never want an unhandled exception to be displayed to a web site visitor.
我们绝不希望网站访问者看到这样的异常信息:

Apart from being a terrible user experience unhandled exceptions can also be a security problem.
抛开这将是很恐怖的用户体验不说,还会带来安全问题。

To solve this problem we will implement a global exception handler.
为了解决这个问题,我们将实现一个全局异常处理器。

To do this, open the Global.asax file and note the following pre-generated event handler.
打开Global.asax文件,注意如下自动生成的代码:

void Application_Error(object sender, EventArgs e)     {     // Code that runs when an unhandled error occurs     }

Add code to implement the Application_Error handler as follows.
添加如下代码:

void Application_Error(object sender, EventArgs e)     {     Exception myEx =  Server.GetLastError();    String RedirectUrlString = "~/Error.aspx?InnerErr=" +            myEx.InnerException.Message.ToString() + "&Err=" + myEx.Message.ToString();     Response.Redirect(RedirectUrlString);     }

Then add a page named Error.aspx to the solution and add this markup snippet.
添加名为Error.aspx的页面,添加如下标记:

ERROR






Now in the Page_Load event handler extract the error messages from the Request Object.
在Page_Load事件处理器实现现实错误信息。

protected void Page_Load(object sender, EventArgs e){    Label_ErrorFrom.Text = Request["Err"].ToString();    Label_ErrorMessage.Text = Request["InnerErr"].ToString();}

总结

We've seen that that ASP.NET WebForms makes it easy to create a sophisticated website with database access, membership, AJAX, etc. pretty quickly.

Hopefully this tutorial has given you the tools you need to get started building your own ASP.NET WebForms applications!
通过此指南可以看出使用ASP.NET创建一个包含数据访问、成员机制、AJAX等功能的复杂的站点是多么的简单。希望此指南对你有所帮助!

相关专题

更多
c++ 根号
c++ 根号

本专题整合了c++根号相关教程,阅读专题下面的文章了解更多详细内容。

57

2026.01.23

c++空格相关教程合集
c++空格相关教程合集

本专题整合了c++空格相关教程,阅读专题下面的文章了解更多详细内容。

57

2026.01.23

yy漫画官方登录入口地址合集
yy漫画官方登录入口地址合集

本专题整合了yy漫画入口相关合集,阅读专题下面的文章了解更多详细内容。

237

2026.01.23

漫蛙最新入口地址汇总2026
漫蛙最新入口地址汇总2026

本专题整合了漫蛙最新入口地址大全,阅读专题下面的文章了解更多详细内容。

393

2026.01.23

C++ 高级模板编程与元编程
C++ 高级模板编程与元编程

本专题深入讲解 C++ 中的高级模板编程与元编程技术,涵盖模板特化、SFINAE、模板递归、类型萃取、编译时常量与计算、C++17 的折叠表达式与变长模板参数等。通过多个实际示例,帮助开发者掌握 如何利用 C++ 模板机制编写高效、可扩展的通用代码,并提升代码的灵活性与性能。

17

2026.01.23

php远程文件教程合集
php远程文件教程合集

本专题整合了php远程文件相关教程,阅读专题下面的文章了解更多详细内容。

103

2026.01.22

PHP后端开发相关内容汇总
PHP后端开发相关内容汇总

本专题整合了PHP后端开发相关内容,阅读专题下面的文章了解更多详细内容。

73

2026.01.22

php会话教程合集
php会话教程合集

本专题整合了php会话教程相关合集,阅读专题下面的文章了解更多详细内容。

81

2026.01.22

宝塔PHP8.4相关教程汇总
宝塔PHP8.4相关教程汇总

本专题整合了宝塔PHP8.4相关教程,阅读专题下面的文章了解更多详细内容。

70

2026.01.22

热门下载

更多
网站特效
/
网站源码
/
网站素材
/
前端模板

精品课程

更多
相关推荐
/
热门推荐
/
最新课程
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送

Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号