Hello people!
I'm trying to make a minor change without blowing the whole thing up :->
Here is what I have:
<asp:TemplateColumn HeaderText="SerialNumbers">
<HeaderTemplate>
<asp:Label ID="lblSerialNumbersHeader" runat="server" resourcekey="">Certificate</asp:Label>
</HeaderTemplate>
<ItemTemplate>
<a href="/Cert.aspx" > <asp:Label ID="lblSerialNumbers" runat="server" ></asp:Label></a>
or the important part. This is the catalook order details page. Originally there is no a href, instead jsut the asp:label for lblSerialNumbers. I made it a link, whooot. Now I want to fine tune a bit.
Questions:
1) how to get the a href to point to the portal root, is it <# =PortalRoot #> ?
2) Any clue how to get that asp:lable text to show up within my address link, kind of like:
<a href="/cert.aspx?ID=<asp:label blahblahblah runat="server"></asp:label>>MyText</a> <-- I know thats not correct :->, but what is the correct way to get that label to show in two places. Is it possible with teh runat=server line?
dunno, never really had an instance to do it within the ASP, but a hint would be great!
Thanks
josh
</ItemTemplate>
</asp:TemplateColumn>