0

首先感谢您阅读我的问题...

我想将代码 2 放入代码 1 ...任何人都请帮助我。

代码 1 是普通的 HTML 页面。

code 1:

<table>
  <tr>
    <td>
        //I want to add code 2 here..
    </td>
  </tr>
</table>



code 2:

if(System.IO.File.Exists(ConfigurationManager.AppSettings["DBCache"].ToString()+"Frame.xml"))
{
   //something
} 
4

3 回答 3

2

我已经有一段时间没有使用 ASP.NET 页面了。试试这个:

<script runat="server">
    if (System.IO.File.Exists(ConfigurationManager.AppSettings["DBCache"].ToString()+"Frame.xml")) {
        myLiteral.Text="Welcome to ASP.NET!!";
    }
</script>

<table>
  <tr>
    <td>
        <asp:Literal id="myLiteral" runat="server" />
    </td>
  </tr>
</table>
于 2013-10-04T20:25:11.940 回答
2

这会做到

<%@ Page Title="YourPage" Language="C#" %>
<table>
  <tr>
    <td>
        <% 
        if(System.IO.File.Exists(ConfigurationManager.AppSettings["DBCache"].ToString()+"Frame.xml")) {

        }
        %>
    </td>
  </tr>
</table>
于 2013-10-04T22:11:44.593 回答
1

它应该类似于以下内容:

 <table>
      <tr>
        <td>
             <% if(your condition)
               {%>

              <% } %>
        </td>
      </tr>
    </table>
于 2013-10-04T20:06:13.637 回答