J
John Cantley
What does this mean, have been doing services and windows apps for awhile
now, don't remember doing anything special to get them to work
tried
<script runat="server"> or whatever it was
string sContent;
sContent = GetContent("Default");
Response.Write(sContent)
</script>
<%
string sContent;
sContent = GetContent("Default");
Response.Write(sContent)
%>
GetContent is a declared this way public string GetContent(string pPage)
Am I doing something wrong or not have something set?
John
now, don't remember doing anything special to get them to work
tried
<script runat="server"> or whatever it was
string sContent;
sContent = GetContent("Default");
Response.Write(sContent)
</script>
<%
string sContent;
sContent = GetContent("Default");
Response.Write(sContent)
%>
GetContent is a declared this way public string GetContent(string pPage)
Am I doing something wrong or not have something set?
John