ASP.NET
Uitdrukkingen
Zoeken…
Waarde van app. Configuratie
<asp:Literal runat="server" text="<%$ AppSettings:MyAppSettingName %>"/>
Geëvalueerde expressie
<div>
The time is now <%= DateTime.Now.ToString() %>
</div>
Codeblok binnen ASP Markup
<div>
<form id="form1" runat="server">
<%
for (int i = 1; i <= 10; j++)
{
Response.Write(i) + " ";
}
%>
</form>
<div>
Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow