<a href='<%# "Portfolio.aspx?StylistID="+StylistID.Value %>' />
Response.Redirect("Portfolio.aspx?StylistID=" & Me.StylistID.Value & "")
Are you are experiencing a similar issue? Get a personalized answer when you ask a related question.
Have a better answer? Share it in a comment.
From novice to tech pro — start learning today.
The code posted is javascript code: (You have to add that to your web site, see http://www.daniweb.com/forums/thread26184.html)
function showNewLink()
{
window.location.href = "Portfolio.aspx?StylistID=
}
For window.location.href explanation, check:
http://www.w3schools.com/jsref/prop_loc_href.asp
For comment 2:
Response.Redirect("Portfol
also put a breakpoint and tell me what Me.StylistID.Value has been set.