Hai! I think the problem is not with the form tags(<%# %>). Do u have any hyperlink in that page, say for Example: This is a sample code: just check the doublecodes which are in BOLD and replace them with singlecodes. <A href="">"../ShowProducts.aspx?catid=<%#DataBinder.Eval(Container.DataItem,"CategoryID")%>&order=lp&view=pic"> <%# DataBinder.Eval(Container.DataItem,"CategoryName")%> </A> <%# DataBinder.Eval(Container.DataItem,"CategoryName")%> then replace these double codes with single code like this: <A href="">'../ShowProducts.aspx?catid=<%#DataBinder.Eval(Container.DataItem,"CategoryID")%>&order=lp&view=pic'> <%# DataBinder.Eval(Container.DataItem,"CategoryName")%> </A> Probably this may slove the problem. all the best, give me ur feedback bye <%# DataBinder.Eval(Container.DataItem,"CategoryName")%> |