Click here to Skip to main content
15,890,282 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how do i redirect users home page when clicks to logo image of any site
i want to know how to redirect current user session and redirect to its home page
like we take example of any website when user logged in he clicks to his website logo it redirects to his homepage. in asp.net c#
Posted
Updated 11-Mar-14 8:11am
v2

It's pretty simple, if I understood your question clearly. Write following code for logo :
HTML
<a href="Home.aspx">
<img src="logo.png" alt="" />
</a>


-KR
 
Share this answer
 
C#
<a href="home.aspx">
<img src="logo.png" alt="logo" />
</a>
 
Share this answer
 
v2
HTML
<a href="Default.aspx">
<img src="logo.jpg" alt="logoname" />
<a />
 
Share this answer
 
v2
<title>




<asp:imagebutton id="ImageButton1" runat="server" postbackurl="~/WebForm3.aspx" imageurl="~/car2.png" xmlns:asp="#unknown">



 
Share this answer
 
HTML
<a href="home.html">
  <img src="home_logo.jpg"></a>
 
Share this answer
 
v3

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