<input id="Button1" type="button" value="button" onclick='window.open("https://google.com")' />
我必須改變這個使用webconfig appsettings。如何在window.open函數ASP.NET中調用WebConfig appsetting值?
在webconfig,我有
<add key="Google" value="https://google.com"/>
我必須得到URL webconfig使用的關鍵。
我已經試過
<input id="Button1" type="button" value="button" onclick='window.open("<%= ConfigurationManager.AppSettings["Google"] %>")' />
但它無法正常工作。
你能找到一個解決方案來訪問window.open函數中的webconfig appsettings值嗎?
它工作正常。謝謝您的幫助。 :)但附近的雙引號顯示錯誤消息「未終止的字符串常量」 –