views:

42

answers:

1

hello friends I haev a dropdownlist box on my page.. with A B C D E F each pages have difernt images once If I select A I need display one Image like B I need to display other image/table on the page.. can any one tel me how to do this? thanks for all your time

A: 

I'd use jQuery, quick example to get you started:

$('#dropDownList').change(
    function() { 
        $('#contentDiv').html("<img src='yourjpg.jpg' alt='alt text' />"); 
    });

You will want to check some values and pick the correct jpg based on the value selected, but that should get you started.

Nate Bross
awesome thanks for your time nate..
kumar