搜尋此網誌

2011年7月3日 星期日

ASP 輸出變數內容,用input物件

用 value="<%= Content %>"
<%
  If Session("wf_LogonID") = "2580" Then
   Content = Session("wf_LogonID")
  Else
   Content = "0"
  End If
%>
<input name="APP_money" type="text" id="APP_money"  value="<%= Content %>" size="20">


直接顯示:
<%
If Session("wf_LogonID") = "2580" Then
Content = Session("wf_LogonID")
Else
Content = "0"
End If
%>
<%= Content %>

注意:程式要寫在前面

沒有留言:

張貼留言