如何使用vbscript
在ASP中按钮显示true或false<textarea <% if Session("a") = "a" %> class="a" <% else %> class="b" <% end if %>
<input type="button" id="clonebutton" value="clone" />
如果会话是a,则按钮可见,否则按钮不可见。 我该怎么做?
答案 0 :(得分:1)
你的代码还没有完全形成,我不确定textarea在那里做了什么,只是把它放在你的按钮周围:
<%If Session("a") = "a" Then%>
<input type="button" id="clonebutton" value="clone />
<%End If%>
你可能不应该使用非描述性名称(例如“a”)来处理会话变量,但也许你只是在做一个例子。