Click here to Skip to main content
15,884,176 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: ASP.NET Cyrilic problem in DB Pin
Not Active24-Jan-10 2:31
mentorNot Active24-Jan-10 2:31 
QuestionEncrypting The string Pin
RajpootRohan23-Jan-10 21:26
professionalRajpootRohan23-Jan-10 21:26 
AnswerRe: Encrypting The string [modified] Pin
Garth J Lancaster23-Jan-10 21:51
professionalGarth J Lancaster23-Jan-10 21:51 
Questionmodal popup extender Pin
Hemant Thaker23-Jan-10 7:29
Hemant Thaker23-Jan-10 7:29 
AnswerRe: modal popup extender Pin
Not Active23-Jan-10 8:18
mentorNot Active23-Jan-10 8:18 
GeneralRe: modal popup extender Pin
Hemant Thaker23-Jan-10 9:17
Hemant Thaker23-Jan-10 9:17 
QuestionHow to perform this requirement Pin
Nath23-Jan-10 5:50
Nath23-Jan-10 5:50 
AnswerRe: How to perform this requirement Pin
thatraja23-Jan-10 7:05
professionalthatraja23-Jan-10 7:05 
use this code
<html>
<head>
<title>Custom ConFirm, Alert and Prompt</title>
<script language="javascript" type="text/javascript">
function FnConfirm()
{
var ans=confirm("Choose a button")
if (ans==true)
{
	alert("You pressed OK");
	FngoOK();
}
else
{
	alert("You pressed Cancel");
	FngoCancel();
}
}
function FngoOK()
{
	window.location = "OK.htm";
}
function FngoCancel()
{
	window.location = "Cancel.htm";
}
</script>
</head>
<body>
<input name="btnCheck" OnClick="FnConfirm()" Type="Button" Value="Click" />
</body>
</html>
i tried this & working.
For server side you can do like this
btnDelete.Attributes.Add("onclick", "FnConfirm()")

GeneralRe: How to perform this requirement Pin
Not Active23-Jan-10 8:12
mentorNot Active23-Jan-10 8:12 
GeneralRe: How to perform this requirement Pin
thatraja23-Jan-10 9:14
professionalthatraja23-Jan-10 9:14 
GeneralRe: How to perform this requirement Pin
Not Active23-Jan-10 9:33
mentorNot Active23-Jan-10 9:33 
GeneralRe: How to perform this requirement Pin
thatraja23-Jan-10 10:17
professionalthatraja23-Jan-10 10:17 
GeneralRe: How to perform this requirement Pin
Nath24-Jan-10 1:02
Nath24-Jan-10 1:02 
GeneralRe: How to perform this requirement Pin
Nath23-Jan-10 15:29
Nath23-Jan-10 15:29 
GeneralRe: How to perform this requirement Pin
thatraja23-Jan-10 16:32
professionalthatraja23-Jan-10 16:32 
AnswerRe: How to perform this requirement Pin
Not Active23-Jan-10 8:07
mentorNot Active23-Jan-10 8:07 
QuestionASP.NET Deployment, how Pin
awedaonline23-Jan-10 3:03
awedaonline23-Jan-10 3:03 
AnswerRe: ASP.NET Deployment, how Pin
Vimalsoft(Pty) Ltd23-Jan-10 3:40
professionalVimalsoft(Pty) Ltd23-Jan-10 3:40 
GeneralRe: ASP.NET Deployment, how Pin
awedaonline24-Jan-10 22:23
awedaonline24-Jan-10 22:23 
AnswerRe: ASP.NET Deployment, how Pin
Not Active23-Jan-10 3:41
mentorNot Active23-Jan-10 3:41 
GeneralRe: ASP.NET Deployment, how Pin
awedaonline24-Jan-10 22:25
awedaonline24-Jan-10 22:25 
QuestionMessage Removed Pin
23-Jan-10 1:12
hi_everybody23-Jan-10 1:12 
AnswerRe: how can i handle url Pin
Not Active23-Jan-10 2:28
mentorNot Active23-Jan-10 2:28 
GeneralMessage Removed Pin
24-Jan-10 19:59
hi_everybody24-Jan-10 19:59 
GeneralRe: how can i handle url Pin
Not Active25-Jan-10 1:05
mentorNot Active25-Jan-10 1:05 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.