<a href="javascript:openPopup('default.aspx?EmpID=<%# Eval("EmpID")
%>&Type=1')" id="lnkDestination" name="lnkDestination"
accesskey="lnkDestination" runat="server">Show</a>
Can anybody please help me in resolving this?
Thanks for your help
Srinivas
<a href='javascript:openPopup("default.aspx?EmpID=<%# Eval("EmpID") %>&Type=1")'
id='lnkDestination'
name='lnkDestination'
accesskey='lnkDestination'
runat='server'>
Show
</a>
---
David Longnecker
Web Developer
http://blog.tiredstudent.com
<a href="<%#
String.Format("javascript:openPopup('default.aspx?EmpID={0}&Type=1\')",
Eval("EmpID")) %>" id="lnkDestination" name="lnkDestination"
accesskey="lnkDestination" runat="server">Show</a>
Hope this helps
--
Milosz
"srinivas" wrote:
> David,
> Thanks for the reply
> After changing it also it's not working.
> Instead of the Caption 'Show' it is displaying entire pagename and id name
> and accesskey names.
> One more thing is if i remove the runat tag then everything is working fine
>
> Thanks
Thanks
Forgot ASP.NET forums will escape "
It should be (hopefully):
<a href="<%#
String.Format("javascript:openPopup('default.aspx?EmpID={0}&Type=1\')",
Eval("EmpID")) %>" id="lnkDestination" name="lnkDestination"
accesskey="lnkDestination" runat="server">Show</a>
--
Milosz