VB.net代碼.aspx頁面中註冊表項值設置
Dim header As String
Dim footer As String
Dim margin_left As String
Dim margin_top As String
Dim margin_bottom As String
Dim bottom As Double
footer = ""
header = ""
IERegKey = Registry.CurrentUser.OpenSubKey("Software\\Microsoft\\Internet Explorer\\PageSetup", True)
'footer = IERegKey.GetValue("footer", 0)
'header = IERegKey.GetValue("header", 0)
'margin_top = IERegKey.GetValue("margin_top", 0)
'margin_bottom = IERegKey.GetValue("margin_bottom", 0)
bottom = 0.25
IERegKey.SetValue("footer", "")
'IERegKey.SetValue("header", "")
''IERegKey.SetValue("margin_top", bottom)
'IERegKey.SetValue("margin_bottom", 0)
當項目從工作項目運行,將工作正常。 但是當做websetup並嘗試運行頁面後,它將顯示錯誤爲
異常詳細信息:System.NullReferenceException:未將對象引用設置爲對象的實例。
源錯誤:
線56:「margin_bottom = IERegKey.GetValue( 「margin_bottom」,0) 線57:底部= 0.25 線58:IERegKey.SetValue( 「頁腳」, 「」) 59號線:「IERegKey.SetValue( 「頭」, 「」)60 行: '' IERegKey.SetValue( 「margin_top」,底部)
我怎樣才能恢復的問題,請幫我