Click here to Skip to main content
15,893,161 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: dynamically increasing image size using asp.net with c# Pin
Tej Aj25-Apr-10 23:12
Tej Aj25-Apr-10 23:12 
Questionhow to increase the image size when image is click Pin
developerit25-Apr-10 1:57
developerit25-Apr-10 1:57 
AnswerRe: how to increase the image size when image is click Pin
Sandeep Mewara25-Apr-10 2:02
mveSandeep Mewara25-Apr-10 2:02 
Questiondisplaying image directly in image button from fileupload control Pin
developerit25-Apr-10 0:44
developerit25-Apr-10 0:44 
AnswerRe: displaying image directly in image button from fileupload control Pin
Sandeep Mewara25-Apr-10 1:57
mveSandeep Mewara25-Apr-10 1:57 
Questionhide and show popup menu Pin
Abdul Rahman Hamidy24-Apr-10 19:08
Abdul Rahman Hamidy24-Apr-10 19:08 
AnswerRe: hide and show popup menu Pin
Sandeep Mewara25-Apr-10 2:04
mveSandeep Mewara25-Apr-10 2:04 
AnswerRe: hide and show popup menu Pin
daveyerwin25-Apr-10 9:34
daveyerwin25-Apr-10 9:34 
Here is a simple example which i believe
accomplishes what you want ...


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
            "http://www.w3.org/TR/html4/strict.dtd">
    <html>
    <head>
<script>

linkset = new Array("hiyas","sup");

showmenu = function(thiss){
	pop = document.getElementById("popmenu");
	pop.innerHTML = "px = "+ thiss.px + " link = " + linkset[thiss.link]	
	pop.style.visibility = 'visible';
	
}
hide = function(e){
	if(e){
		id = e.target.id}
	else{
		id = event.srcElement.id}
	if(id !="show"){
		document.getElementById("popmenu").style.visibility = 'hidden';}
}

document.onclick=hide;
</script></head>
    <body>
    
    <form id="form1" runat="server">
    <div>
	<a id="show"  onclick="this.px='180px';this.link='1';showmenu(this)" >
	Click here
    	</a><br>
	<a id="show"  onclick="this.px='90px';this.link='0';showmenu(this)" >
	Click here
    	</a>
	<div id="popmenu">Hello Im a menu</div>	
    </div>
    </form>

    </body>
    </html>

GeneralRe: hide and show popup menu Pin
Abdul Rahman Hamidy25-Apr-10 19:01
Abdul Rahman Hamidy25-Apr-10 19:01 
GeneralRe: hide and show popup menu Pin
daveyerwin26-Apr-10 4:50
daveyerwin26-Apr-10 4:50 
QuestionSending emoticons between 2 applications Pin
Eagle3224-Apr-10 9:34
Eagle3224-Apr-10 9:34 
AnswerRe: Sending emoticons between 2 applications Pin
Eddy Vluggen24-Apr-10 23:03
professionalEddy Vluggen24-Apr-10 23:03 
QuestionUsing User Controls in FormView templates. Pin
Brady Kelly24-Apr-10 5:06
Brady Kelly24-Apr-10 5:06 
Questionasp.net ajax cache Pin
jason_mf24-Apr-10 2:08
jason_mf24-Apr-10 2:08 
AnswerRe: asp.net ajax cache Pin
Sandeep Mewara24-Apr-10 2:47
mveSandeep Mewara24-Apr-10 2:47 
QuestionGoogle Map? Pin
kripa2123-Apr-10 23:45
kripa2123-Apr-10 23:45 
AnswerRe: Google Map? Pin
Abhijit Jana24-Apr-10 0:17
professionalAbhijit Jana24-Apr-10 0:17 
Questionyoutube video in asp.net Pin
mylogics23-Apr-10 23:38
professionalmylogics23-Apr-10 23:38 
AnswerRe: youtube video in asp.net Pin
sashidhar24-Apr-10 1:05
sashidhar24-Apr-10 1:05 
QuestionGet DateTime according to country. Pin
Avinash_Mane23-Apr-10 23:23
Avinash_Mane23-Apr-10 23:23 
AnswerRe: Get DateTime according to country. Pin
Shahriar Iqbal Chowdhury/Galib23-Apr-10 23:36
professionalShahriar Iqbal Chowdhury/Galib23-Apr-10 23:36 
GeneralRe: Get DateTime according to country. Pin
Avinash_Mane23-Apr-10 23:45
Avinash_Mane23-Apr-10 23:45 
GeneralRe: Get DateTime according to country. Pin
Shahriar Iqbal Chowdhury/Galib23-Apr-10 23:53
professionalShahriar Iqbal Chowdhury/Galib23-Apr-10 23:53 
GeneralRe: Get DateTime according to country. Pin
Avinash_Mane24-Apr-10 0:31
Avinash_Mane24-Apr-10 0:31 
AnswerRe: Get DateTime according to country. Pin
sashidhar24-Apr-10 1:12
sashidhar24-Apr-10 1:12 

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.