Chciałbym zrobić skrypt i klasę tak, aby w klasie znajdowała się wartość w postaci tekstu, któr
Chciałbym zrobić skrypt i klasę tak, aby w klasie znajdowała się wartość w postaci tekstu, która mógłbym wklejać do skryptu za pomocą <% = Http.Utility.Html.Encode (head/body) %>. Zrobiłem taki skrypt i klase, ale zawartość nie jest wklejana.
Skrypt:
<%
@ Page Language ="C#" CodeFile="~/elements.cs" inherits="en" %>...
<script runat="server"> public void Page_Load (object scr, EventArgs e){
string active = "index";
}
</script> ...<%
= HttpUtility.HtmlEncode (head)%>
...
<% = HttpUtility.HtmlEncode (body)%> ...
Klasa:
public
partial class pl : System.Web.UI.Page{
public string active; public string head; public string body; public void Page_Load(object src, System.EventArgs e)
{
string head = "..."; string body = "..." + active + "...";}
}
public
partial class en : System.Web.UI.Page{
public string active; public string head; public string body; public void Page_Load(object src, System.EventArgs e)
{
string head = "..."; string body = "..." + active + "...";
}
}
Czy może wiesz co tutaj jest źle? Uprzejmie proszę o pomoc.
Odpowiedzi: 0
Strona 0 / 0