提问人:MxNeil 提问时间:11/9/2023 最后编辑:GSergMxNeil 更新时间:11/9/2023 访问量:44
我想将数据库中的所有食谱显示到页面上,但我只是收到错误
I wanna display all the recipes from the database onto the page but i just get errors
问:
我想将数据库中的所有食谱显示到页面上,但它要么告诉我
执行超时已过期。在操作完成之前已过超时期限,或者服务器没有响应。
或
已超出传入邮件的最大邮件大小配额 (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/> ");
}
答: 暂无答案
评论
Krabby_Patty.clRecipe.wsRecipeSoapClient()