.net C# WebForms交换到开发环境问题

o8x7eapl  于 2023-01-06  发布在  .NET
关注(0)|答案(1)|浏览(98)

我正在使用webforms中的iFrame。但是,我收到了如下错误:

我知道人们如何在.net core中解决它(就像那里:<environmentVariable name="ASPNETCORE_ENVIRONMENT" value="Development" />),但我在webforms中找不到任何解决方案。

q9rjltbz

q9rjltbz1#

当然,您可以使用一些自定义设置来告诉您这是“开发”或“某种”调试模式。
然后在页面加载时,您可以执行以下操作:

if ("some kind of development mode")
 {
    this.pshow.Attributes.Add("src", "/PDF/web/viewer.html?file=" + strFWebPath);

 }
 else
 {
    this.pshow.Attributes.Add("src", "whatever here for pduction or release");
  }

相关问题