ASP.Net/Request/Variables Passing — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 11:53, 26 мая 2010
Pass varaible between pages (C#)
<%@ Page Language="c#" %>
<html>
<body>
<%;
string Name = "Sniff";
string Age = "23";
%>
<a href="birthday2.aspx?name=<% Response.Write(Name); %>&age=<%
Response.Write(Age); %>">Click here</a>
</body>
</html>
<%--
<%@ Page Language="c#" %>
<html>
<body>
<center>
<%
string Name = Request.QueryString["Name"];
string Age = Request.QueryString["Age"];
%>
<h1>Happy Birthday <% Response.Write(Name); %></h1>
<h3>May the next
<% Response.Write(Age); %>
years be as good!</h3>
</center>
</body>
</html>
--%>