Click here to Skip to main content
15,889,176 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
XML
<ul class="tabrow" id="ulist">
 <li id="list1"><div class="icon"><i class="ion ion-person-stalker" ></i></div>
    <asp:LinkButton ID="linkMenuProfile" runat="server"                               onclick="linkMenuProfile_Click">Profile</asp:LinkButton></li>

</ul>
Posted
Comments
Jaimin H. Soni 9-Aug-14 8:20am    
explain more in detail what you want???

1 solution

There are two possible ways to achieve it

1. wrap the < li> with an Anchor(< a href="">< /a>)tag and where you can specify the link
2. There is property called PostBackUrl for LinkButton where you can mention the Link


Hope this will help you
 
Share this answer
 
v2
Comments
m-shraddha 11-Aug-14 1:16am    
Its not working
[no name] 12-Aug-14 1:29am    
yeah because you are mentioning the onclick event as linkMenuProfile_Click. So you may have to write a code behind for redirecting to another page like Response.Redirect("Some link/page"); or remove the onclick and give the link address in PostBackUrl

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900