私は奇妙な問題を抱えています。
ポストバックを強制するために使用する必要GetPostBackEventRefence
がありますが、最初のポストバックの後、初めて機能します.NET関数はレンダリングされません...アイデアはありますか?
これは、ポストバック後に欠けているものです。
<script language="javascript" type="text/javascript">
<!--
function __doPostBack(eventTarget, eventArgument) {
var theform;
if (window.navigator.appName.toLowerCase().indexOf("microsoft") > -1) {
theform = document.Main;
}
else {
theform = document.forms["Main"];
}
theform.__EVENTTARGET.value = eventTarget.split("$").join(":");
theform.__EVENTARGUMENT.value = eventArgument;
theform.submit();
}
// -->
</script>