點擊按鈕,執行提交操作,彈出消息框後,頁面的樣式變亂,解決方法:
首先,確定使用的css樣式正確,頁面中的寬高值保持規范統一;
然後,彈出框避免使用Response.Write(),如下所示
復制代碼 代碼如下:
Response.Write("<script language=javascript>");
Response.Write("window.alert('");
Response.Write("計劃添加失敗!");
Response.Write("');");
Response.Write("</script>");
修改為:ClientScript.RegisterStartupScript(GetType(), "", "window.alert('計劃添加失敗!');", true);