How to save the information that will be shown to everybody
S T E P - 1
- We will use the Application to save the information that can be shown to everybody.
- First, we create an Application:
<%
Application.Value("Welcome") = "Welcome!!"
%>
S T E P - 2
- In the second ASP file, we can use it and show the value of Application:
<%
Response.write("This message will show to everybody - " & Application.Value("Welcome"))
%>
No comments:
Post a Comment