我想将数据库中的所有食谱显示到页面上,但我只是收到错误

I wanna display all the recipes from the database onto the page but i just get errors

提问人:MxNeil 提问时间:11/9/2023 最后编辑:GSergMxNeil 更新时间:11/9/2023 访问量:44

问:

我想将数据库中的所有食谱显示到页面上,但它要么告诉我

执行超时已过期。在操作完成之前已过超时期限,或者服务器没有响应。

已超出传入邮件的最大邮件大小配额 (65536)。若要增加配额,请在相应的绑定元素上使用 MaxReceivedMessageSize 属性。

这是我的代码:

Krabby_Patty.clRecipe.RecipeList[] listRecip = new Krabby_Patty.clRecipe.RecipeList[100];
Krabby_Patty.clRecipe.wsRecipeSoapClient wsR = new Krabby_Patty.clRecipe.wsRecipeSoapClient();
listRecip = wsR.GetAllRecipe();

foreach (Krabby_Patty.clRecipe.RecipeList recs_ in listRecip)
{
    Response.Write("<br/>Recipe Name: " + recs_.RecipeName);
    Response.Write("<a href='Testing.aspx?RecipeName=" + recs_.RecipeName + "'>View More...</a>");
    Response.Write("<br/><hr/> ");
}
C# asp.net ASP.NET-WEB-API

评论

0赞 Dai 11/9/2023
什么?Krabby_Patty.clRecipe.wsRecipeSoapClient()
1赞 Dai 11/9/2023
你发布的代码看起来像是针对代码生成的SOAP客户端的 - 这里与数据库无关。
1赞 Dai 11/9/2023
...你到底为什么要在 2023 年使用 SOAP?
0赞 MxNeil 11/9/2023
这是一个项目,我被告知要使用SOAP@Dai
1赞 Dai 11/9/2023
好吧,告诉你使用SOAP的人一定是一个从2005年突然来到这里的时间旅行者......

答: 暂无答案