为什么默认的aspx被调用?

时间:2012-09-27 17:33:56

标签: c# asp.net .net mysql web-applications

我是一个新的程序员,试图了解别人的代码。该程序的目的是使用书签将MySQL数据放入word文件模板中。 AR和ICN是两种类型的报告,因此它们各自具有自己的模板。该代码最初只包含AR,我现在已经添加了ICN。控制台应用程序运行良好,我有网页问题。我不明白为什么我的代码中的if (int.TryParse(ticketId, out currentTicket))FALSE,它会生成default.aspx。

尝试在broswer中查看此代码

using System;
using System.Web;
using TicketExtractionLibrary;

namespace TicketExtractionWeb
{
    public partial class GetAR : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            string ticketId = Request.QueryString["TicketId"];
            int currentTicket;

            string applicationPath = Request.PhysicalApplicationPath;
            ARExtractionController ARController = new ARExtractionController();

            string arTemplateLocation = HttpContext.Current.Server.MapPath("~/AR.dot");
            string mappingLocation = HttpContext.Current.Server.MapPath("~/ARmapping.xml");

            if (int.TryParse(ticketId, out currentTicket))
            {
                ARController.Extract(currentTicket, applicationPath + "LastTickets", arTemplateLocation, mappingLocation);

                Response.Clear();
                Response.Buffer = true;
                Response.ContentType = "application/msword";
                Response.AddHeader("content-transfer-encoding", "binary");
                Response.AddHeader("content-disposition", "attachment;filename=AR" + ticketId + ".docx");

                Response.ContentEncoding = System.Text.Encoding.GetEncoding(1251);

                string path = Server.MapPath(@"\LastTickets\AR" + ticketId + ".docx");
                System.IO.FileInfo file = new System.IO.FileInfo(path);

                Response.WriteFile(path);

                Response.End();
            }
            else
            {
                Response.Redirect("Default.aspx");
            }
        }
    }
}

Solution Explorer

3 个答案:

答案 0 :(得分:4)

据说,如果通过查询字符串传递的TicketID不是整数,则不会生成报告或Word文档,因此会将用户重定向到default.aspx页面。

答案 1 :(得分:0)

TicketID的值不能是整数,因为TryParse返回FALSE并且您被重定向到默认页面。确保TicketID值为整数。

答案 2 :(得分:0)

正如@MarkSherretta所说,TryParse失败,它向“if”语句发送“false”,导致控制传递给“else”,调用Default.aspx,如代码所示。

请参阅TryParse上的MSDN:

http://msdn.microsoft.com/en-us/library/f02979c7.aspx