0
我寫在JavaScript代碼(在.aspx頁面中),這將通過使用Web服務的jQuery Ajax代碼在數據庫中插入值,然後它會執行重定向操作,但是它沒有執行重定向..請告訴我,如果我這樣做在我的代碼問題的話...這裏是我的代碼..Jquery的Ajax代碼和重定向代碼在一個JavaScript代碼
<script type="text/javascript">
function xyz()
{
$.ajax({
type: "POST"
url: "WebService.asmx/InsertRediretTime"
});
window.location='....location...';
}
</script>