well, the problem is the
EditCompleteDocument property is net set on the above example.
I don't want the javascript to run upon postback.........
basically i would like an html page with javascript which gets fired upon the onload event of the body tag.
so we would need the EditCompleteDocument property set and the EnableStripScriptTags property set.
so the code i want to run is
<script language='javascript>
function Test()
{
alert('Test')
}
</script>
<html>
<body onload=Test()>
</body>
</html>