Click here to Skip to main content
15,917,328 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
can anyone suggest me a dll file for Confirm and Success, information message in asp.net..
Plz send me link...
Posted
Comments
fjdiewornncalwe 22-Mar-12 13:36pm    
I'm not sure if your question is clear enough. Can you explain a little more about what you are trying to accomplish?
Gopal Rakhal 22-Mar-12 21:10pm    
Simply I want a Confirm Message as in Windows application. Say, Yes/No message Box, in C# asp.net
Sergey Alexandrovich Kryukov 22-Mar-12 14:15pm    
You want to confirm with a DLL file?! How's that? If it makes some sense, don't hesitate a minute -- "Improve question" is above.
--SA
Gopal Rakhal 22-Mar-12 21:10pm    
Then plz suggest me else way...
Sergey Alexandrovich Kryukov 22-Mar-12 21:56pm    
I can see the advice by Marcus now. This is a good advice. You should understand that the confirmation itself happens on the client side, only, so ultimately it should be JavaScript, so it could not be a DLL in principle (the client platform is completely unknown; and ActiveX is the absolutely evil, proprietary scam...). And one of the rich source of JavaScript codes is jQuery plug-ins...
So, you should it this approach. It's easy and fun to use, too...
--SA

If you are looking for a client side confirmation dialog box, then I would suggest you look into something like this one[^].
 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 22-Mar-12 21:57pm    
Sure, my 5. I also took a chance to advertize this approach and explain why this is a good thing, in my last comment to OP's question, please see above.
--SA
I am Prosenjit Muhury.

your solution given bellow.
C#
string strscript="";
strscript = "<script language="javascript" type="text/javascript">";
strscript += " function confirm(){ window.alert('Upload Successfully');}";
strscript += "</script>";
Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "test", strscript);
ScriptManager.RegisterStartupScript(this, this.GetType(), "starScript", "confirm();", true);
 
Share this answer
 
v2
Comments
Bojjaiah 30-Mar-12 13:18pm    
add pre tag
 
Share this answer
 
v2

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