我正在通過VB代碼調用數據庫的asp.net項目上工作。一旦成功請求,div必須通過JQuery離開動畫。從頁面加載的VB代碼調用JS
例如。
VB代碼:
If Confirmationcode = Passcode.text Then
'Perform the animation here ... NextPage();
'Registerstartupscript doesnt work as this is not in the page_load event
Response.Redirect("Default.aspx", False)
End If
JS:
<script type="text/javascript">
function NextPage() {
$('.Wrapper').animate({ left: '-150%' }, 800);
};
</script>
,因爲它是非常簡單的:
動畫必須執行,而一旦完成,則新然後aspx頁面必須加載。
我認爲你需要學習客戶端代碼和服務器之間的差異端代碼 - 以及ASP.NET頁面生命週期如何工作 – freefaller
'Page.ClientScript.RegisterStartup腳本(我。[GetType](),「點擊」,「NextPage();」,True)'..這在C#中工作,並可能在這裏工作... – Bhavik