+1  A: 

got solution.... Actually asp menu control rendered as anchor, we can set the display style of anchor as block....

 <style>
    #dvmnu a
    {
        display: block;
    }
</style>

where dvmnu is the div under which asp menu control exist.

Muhammad Akhtar
This could be achieved with just CSS, yea?
o.k.w