【发布时间】:2015-05-31 04:13:00
【问题描述】:
在 html 中这些都在工作,我如何编写一个代码,它在下面的 HTML 语句中使用经典 asp 中的响应写入语句?
<div id="the_div" style="border: 1px solid red"><iframe src=asp3.asp> <br><br></div>
<a href="#" onclick="hide('the_div');return false;">Hide the div until this link is click again.</a><br>
<a href="#" onclick="remove('the_div');return false;">Remove the div until this link is click again.</a>
我在下面尝试了但没有成功,是吧?
response.write "<div id='the_div'><iframe src=asp3.asp> </iframe><br><br></div>"
response.Write "<a href='#' onclick='hide('the_div');return false;">"Hide the div until this link is click again.</a><br>"
response.Write "<a href='#' onclick='remove('the_div');return false;">"Remove the div until this link is click again.</a>"
【问题讨论】:
标签: asp-classic