D
Darrel
I need to take a querystring value of the page I'm on:
<%=Request.QueryString["itemid"].ToString()%>
and put it into a value within a server control tag:
<mytag:displayHTML id='myID' runat='server'
RequestURL='http://localhostexample.aspx?format=html&page=overview&id=<%=Request.QueryString["itemid"].ToString()%'
/>
Alas, that syntax doesn't work. Can it be done?
-Darrel
<%=Request.QueryString["itemid"].ToString()%>
and put it into a value within a server control tag:
<mytag:displayHTML id='myID' runat='server'
RequestURL='http://localhostexample.aspx?format=html&page=overview&id=<%=Request.QueryString["itemid"].ToString()%'
/>
Alas, that syntax doesn't work. Can it be done?
-Darrel