Click here to Skip to main content
15,886,806 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,i wanted to change the warning icon in my pop up message to an information icon..Can anyone please help me
<asp:LinkButton ID="lnkForgtnPwd" runat="server" CssClass="messageLogIn" OnClick="lnk_click" OnClientClick=" ShowMessage()">Forgotten your id?

I have created the link "Forgotten your id?".On clicking this link its calls the function ShowMessage()

C#
function ShowMessage()
      {
          alert("Contact the admin")
          return false;
      }


Contact the admin is displayed as a pop up message ,but its displayed with a warning icon.i want it with an information icon..
Posted

1 solution

This might help.This[^]

If you need more freedom, write something yourself. You can use JQuery[^] to show a div tag as a Dialog including moving around, styling, OK buttons etc...

Takes some effort to learn though.

Hope this helps.
 
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