![]() |
|
|
|
#1 |
|
<%# Session("oID") = Container.DataItem("VendorID")%>
The above statment, writes the value of the 'VendorID' instead of assigning it to the session variable. What's wrong? I'm a classic ASP developer and have been asked to help with a quick fix for a .net site. Tried googling for help but found nothing useful. Thanks Dom |
|
|
|
|
#2 |
|
Posts: n/a
|
Session("oID") = <%# Container.DataItem("VendorID")%> |
|