Click here to Skip to main content
15,897,891 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi All

I need to dispay confirm box on server Side.. senario is like Im Trying To upload Image During Upload Im Checking some properties like Image type,image size, etc.. While Uploading i want to check properties like
C#
if(type=="xxxx")

{

confirmbox("  ");

if(confirmvalue=="yes")

{

next condition

}

else

{

exit ;

}

}

like this i want check different properies of file.. i tried

this.Page.ClientScript.RegisterStartupScript(this.GetType(), "alert", "alert('You clicked YES!')", true);
but it wont work
Posted
Updated 3-Aug-12 21:57pm
v2

1 solution

Please check this answer

Confirm Box[^]

Regards
Sebastian
 
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