我完成了完美的編碼註冊頁面,登錄和現在UpdateCustomer頁面有錯誤 - 背景信息:我使用Microsoft Access作爲數據源錯誤:無法投入'System.Int32'類型的對象鍵入'System.String'
LabelState.Text = (string)Session["sState"];
LabelPostalCode.Text = (string)Session["sPostalCode"];
LabelContactNumber.Text = (string)Session["sContactNumber"];
LabelEmail.Text = (string)Session["sEmail"];
LabelPassword.Text = (string)Session["sPassword"];
這裏的一切都很好,除了LabelContactNumber.Text = (string)Session["sContactNumber"]
。
我相信這是因爲只有Access中的ContactNumber被設置爲Int其餘的是Text,所以當我使用(string)時沒有錯誤。