Link to home
Start Free TrialLog in
Avatar of Ernesto
ErnestoFlag for Mexico

asked on

insert session value to a aspboundfile

Hi all
can i

<asp:BoundField HeaderImageUrl="~/Images/<%=Session("uno")%>.png" 

Open in new window


need a session value inthere is that posible?
regards
Avatar of HainKurt
HainKurt
Flag of Canada image

<asp:BoundField HeaderImageUrl="~/Images/<%=Session("uno")%>.png"

Open in new window


looks good

or use

<asp:BoundField HeaderImageUrl="<%="~/Images/" & Session("uno") & ".png"%>"

Open in new window


or use single '

<asp:BoundField HeaderImageUrl='<%="~/Images/" & Session("uno") & ".png"%>'

Open in new window


or, you may need ResolveUrl

<asp:BoundField HeaderImageUrl='<%=ResolveURL("~/Images/" & Session("uno") & ".png")%>'

Open in new window

Avatar of Ernesto

ASKER

oh men , try all an no one!
ASKER CERTIFIED SOLUTION
Avatar of HainKurt
HainKurt
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial