H
Howard
Hello
I need some help with this. I want to assign the content of a static
txt/html file to my string a.
<script runat="server" language="C#">
private void Page_Load(object sender, System.EventArgs e)
{
string a =
//include static html page welcome.htm
}
</script>
should i make welcome.htm a user control?
or use StreamReader?
Howard
I need some help with this. I want to assign the content of a static
txt/html file to my string a.
<script runat="server" language="C#">
private void Page_Load(object sender, System.EventArgs e)
{
string a =
//include static html page welcome.htm
}
</script>
should i make welcome.htm a user control?
or use StreamReader?
Howard