我需要在只有一个关闭按钮(没有后退按钮等)的新窗口中打开一个网站。我找到了以下脚本,但它不起作用,我希望有人能解释原因:
string WindowOpen = "window.open('Notes.aspx?NoteTableId=" + id +
"&NoteTable=" + Tables.InvoiceHeader + "',
'theWin', 'width=200,height=200,toolbar=0,menubar=0');";
但是,当我的页面加载时,我收到以下错误:
The name 'id' does not exist in the current context
The name 'Tables' does not exist in the current context
我不确定那是什么意思。有人可以帮忙吗?