When we want to float a html control above the object control then we will not be able to float it by
increase the z-index property but it can be possible if we use both as object
<OBJECT ID=’ctl00_MasterContentplaceholder_newdate_obj’
DATA=’objNew.html’ style=’z-index:12; width:100%; position:absolute; height:5px;’
TYPE=’text/x-scriptlet’ >
</OBJECT>
In the above example in between object we fetch html and do needed coding there.
In other way it can also be possible by taking iframe instead of object
<iframe src=”yourwebpage.html” name=”anyname” width=”200″ height=”150″ align=”default”></iframe>
Advertisement