Click here to Skip to main content
15,901,982 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: java script function call don't stop. Pin
Not Active23-May-10 18:08
mentorNot Active23-May-10 18:08 
Questiontransaction stoppage or resume Pin
netsooz (Amir Hamidi)23-May-10 5:30
netsooz (Amir Hamidi)23-May-10 5:30 
AnswerRe: transaction stoppage or resume [modified] Pin
Blue_Boy23-May-10 11:57
Blue_Boy23-May-10 11:57 
QuestionOnline Exam System Pin
Feras Mazen Taleb23-May-10 4:34
Feras Mazen Taleb23-May-10 4:34 
AnswerRe: Online Exam System Pin
Blue_Boy23-May-10 12:05
Blue_Boy23-May-10 12:05 
GeneralRe: Online Exam System Pin
Feras Mazen Taleb23-May-10 16:33
Feras Mazen Taleb23-May-10 16:33 
QuestionClient Side Drop Down Pin
JC.KaNNaN23-May-10 3:58
JC.KaNNaN23-May-10 3:58 
AnswerRe: Client Side Drop Down [modified] Pin
daveyerwin23-May-10 5:57
daveyerwin23-May-10 5:57 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>
	
</title>
    <script type="text/javascript">
showDropDown=function(){
dds=document.getElementsByTagName("SELECT");
	for(i=1;i<4;i++){
		dds[i].style.display="none";
	}
	dds[dds[0].selectedIndex + 1].style.display="inline"
}
</script></head>
<body>
    
<select onchange="showDropDown()">
  <option>Milk</option>
  <option>Coffee</option>
  <option>Tea</option>
</select>

<select style="display:none">
  <option>chocolate</option>
  <option>strawberry</option>
  <option>skim</option>
</select>

<select style="display:none">
  <option>black</option>
  <option>columbian</option>
  <option>arabic</option>
</select>

<select style="display:none">
  <option>iced</option>
  <option>hot</option>
  <option>green</option>
</select>
</body>
</html>



modified on Sunday, May 23, 2010 12:36 PM



-- Modified Monday, August 2, 2010 2:04 PM

GeneralRe: Client Side Drop Down Pin
JC.KaNNaN24-May-10 7:16
JC.KaNNaN24-May-10 7:16 
QuestionDisplay Images dynamically at runtime from a web site Pin
Eagle3223-May-10 1:39
Eagle3223-May-10 1:39 
AnswerRe: Display Images dynamically at runtime from a web site Pin
Not Active23-May-10 3:34
mentorNot Active23-May-10 3:34 
GeneralRe: Display Images dynamically at runtime from a web site Pin
Eagle3223-May-10 6:36
Eagle3223-May-10 6:36 
GeneralRe: Display Images dynamically at runtime from a web site Pin
Not Active23-May-10 7:39
mentorNot Active23-May-10 7:39 
GeneralRe: Display Images dynamically at runtime from a web site Pin
Eagle3223-May-10 12:43
Eagle3223-May-10 12:43 
QuestionHOW TO INSERT DATA FROM A TABLE IN my ASP page TO SQL SERVER DATABASE [modified] Pin
ihbos22-May-10 20:32
ihbos22-May-10 20:32 
AnswerRe: HOW TO INSERT DATA FROM A TABLE IN my ASP page TO SQL SERVER DATABASE Pin
Not Active23-May-10 3:30
mentorNot Active23-May-10 3:30 
GeneralRe: HOW TO INSERT DATA FROM A TABLE IN my ASP page TO SQL SERVER DATABASE Pin
ihbos23-May-10 8:23
ihbos23-May-10 8:23 
GeneralRe: HOW TO INSERT DATA FROM A TABLE IN my ASP page TO SQL SERVER DATABASE Pin
Not Active23-May-10 8:32
mentorNot Active23-May-10 8:32 
Questionmake different menu for site Pin
farasat.mohammad22-May-10 18:37
farasat.mohammad22-May-10 18:37 
AnswerRe: make different menu for site Pin
Sandeep Mewara22-May-10 20:39
mveSandeep Mewara22-May-10 20:39 
GeneralRe: make different menu for site Pin
farasat.mohammad23-May-10 19:46
farasat.mohammad23-May-10 19:46 
QuestionProblem with declaring namespace Pin
Eagle3222-May-10 12:21
Eagle3222-May-10 12:21 
QuestionCount number of records from a tabel and display result in a gridview column at run time. Pin
Eagle3222-May-10 11:58
Eagle3222-May-10 11:58 
AnswerRe: Count number of records from a tabel and display result in a gridview column at run time. Pin
Sandeep Mewara22-May-10 20:35
mveSandeep Mewara22-May-10 20:35 
GeneralRe: Count number of records from a tabel and display result in a gridview column at run time. Pin
Eagle3223-May-10 1:32
Eagle3223-May-10 1:32 

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.