0

我曾经写过winforms,现在我正在尝试将我的一些应用程序移植到网络界面,但我的应用程序似乎无法正常工作,尽管我班级中的代码没有改变。

我从来没有做过网络开发,所以我想知道这是否是我做错的事情?

我在我的 runEbay.aspx 中使用此代码

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="runEbay.aspx.cs" Inherits="eBay_Item_Scanner.runEbay" %>

<div>
    <a href="Default.aspx">Home</a> | <a href="runEbay.aspx">Run Full eBay Scan WARNING!!!!!!!
    </a>
</div>
<%
    string MAINPN = Request["MAINPN"] != null ? Request["MAINPN"] : "";
    string EBAYCATEGORYTOSCAN = Request["EBAYCATEGORYTOSCAN"] != null ? Request["EBAYCATEGORYTOSCAN"] : "";

    Response.Write("<br>MAINPN: " + MAINPN);
    Response.Write("<br>EBAYCATEGORYTOSCAN: " + EBAYCATEGORYTOSCAN);

    //create instance of class Program    
    eBay_Item_Scanner.Program eb = new eBay_Item_Scanner.Program();

    if (SUBPN.Length > 0)
    {
        String query = @"my query using some request parameters";

        //call functions from another class
        eb.getEbay_com_API(query, EBAYCATEGORYTOSCAN);
    }    
    Response.Write("<br><br>Scanning is done");          
%>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>


    </div>
    </form>
</body>
</html>
4

1 回答 1

0

好的; 问题是我的函数太大而且它们使 IIS 超时。我删除了超时并解决了问题。

于 2012-06-25T21:29:36.747 回答