Click here to Skip to main content
15,891,136 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi frnds friends.

I have a hyperlink on my page. When I click this hyperlink(Logout) I need a message (r u Are you sure you want to logout) with YES and NO button

This is my code.




thanx Thanks
Posted
Updated 24-Apr-12 1:39am
v2
Comments
OriginalGriff 24-Apr-12 6:58am    
No, that is a link to this question...
[no name] 24-Apr-12 7:12am    
If you would like to be taken seriously, you might want to invest in a keyboard that has all of the letters and then use them. "r u sure" has no place in a professional application.
Shahin Khorshidnia 24-Apr-12 7:48am    
Please do not use SMS words (u, frnd, thx , r) You have enough time to type "You", "Friends", "Thanks", "are"

Try this:

OnClientClick="return confirm('Are you sure you want to Logout ?');"


Add this to HyperLink or link button
 
Share this answer
 
Comments
Syed SufiyanUddin 24-Apr-12 7:08am    
This is my code, can u please suggest me.

<li><span>Logout</span></li>
Syed SufiyanUddin 24-Apr-12 7:10am    
i used to work with href
Vipin_Arora 24-Apr-12 7:12am    
Use LinkButton instead of having <li>
VJ Reddy 26-Apr-12 1:49am    
5!
sravani.v 26-Apr-12 2:00am    
Thank you VJ
Hi ,
try this hope it help
HTML
<script type="text/javascript">
        function confirmation() {
            if (confirm('are you sure you want to logout?')) {
            return true;
            }else{
            return false;
            }
        }
    </script>

ASP.NET
<asp:button id="Button1" runat="server" text="Button" xmlns:asp="#unknown">
        OnClientClick="return confirmation();" onclick="Button1_Click"/></asp:button>

Best Regards
M.Mitwalli
 
Share this answer
 
v2
You use the code in such a fashion , might be work.........<pre lang="c#">


OnClick ="return confirm('Are you sure you want to Logout ?');"
 
Share this answer
 

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