gpt4 book ai didi

asp.net - 它可以在属性内插入代码块吗?

转载 作者:行者123 更新时间:2023-12-04 06:27:03 25 4
gpt4 key购买 nike

例如:

<script runat = "server">

public string SetMonthYear()
{
return "answers" + ddl_month.SelectedValue + "-" + txt_year.Text + ".xml";
}

</script>

<form id="Form1" class="style1" runat = "server">

<asp:DropDownList ID="ddl_month" runat="server">
<asp:ListItem Value="1" Text="Enero"/>
<asp:ListItem Value="2" Text="Febrero"/>
<asp:ListItem Value="3" Text="Marzo"/>
</asp:DropDownList>

<asp:TextBox ID="txt_year" runat="server"></asp:TextBox>

<p><asp:Label ID="ex_label" visible="False" runat="server" Font-Bold="True" ForeColor="Red" Font-Italic="True"></asp:Label></p>

<parley:Resultado id = "itsParley" File = "<%SetMonthYear()%>" runat = "server"/>
</form>

我可以用 <%SetMonthYear()%>设置 File 的值?

最佳答案

在服务器端代码上,您可以执行以下操作:

itsParley.File=SetMonthYear();

由于 SetMonthYear() 将在服务器上执行,我不明白为什么这会是一个问题。只需将上面的代码放在 Page_Load 事件中即可。

关于asp.net - 它可以在属性内插入代码块吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5914211/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com