문제

I have the following HTML in my MasterPage:

<input class="button" type="button" value="Select User" onclick='<%# string.Format(@"location.href={0}", ResolveUrl("~/SelectUser.aspx")) %>' />

I'm trying to figure out how to get ResolveUrl to work with an HTML input button, but no matter how I twist and turn it I can't get it right (meaning the click never redirects the page to SelectUser.aspx). I could use an ASP.NET Button, but then I'd have to monkey with my CSS and I really don't want to spend the time doing that.

Any help on how to go about doing this would be greatly appreciated. Thanks!

도움이 되었습니까?

해결책

I use href like below and make sure that there is no runat="server" tag.

    href = "<%=this.ResolveUrl("~/abc.aspx")%>" 

다른 팁

Either use an ASP.NET Button or make it runat"=server".

The Forgotten Controls: HTML Server Controls

ResolveUrl will only work if you call Page.DataBind() in your Page_Load

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top