日本最帅av男优:关于ASP的问题(本人是初学者)

来源:百度文库 编辑:神马品牌网 时间:2024/04/27 13:42:53
小弟想在HTML网页中能调用ASP网页中的一个变量(值)
要有
请把代码或方法给我好吗
谢谢了

输出变量a的值:
<table>
<tr>
<td>
<%=a%>
</td>
</tr>
</table>


<table>
<tr>
<td>
<%
response.write(a)
%>
</td>
</tr>
</table>

具体程序需要具体分析