<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
		<id>http://nfex.ru/index.php?action=history&amp;feed=atom&amp;title=ASP.NET_Tutorial%2FPage_Lifecycle%2FPage_Load</id>
		<title>ASP.NET Tutorial/Page Lifecycle/Page Load - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://nfex.ru/index.php?action=history&amp;feed=atom&amp;title=ASP.NET_Tutorial%2FPage_Lifecycle%2FPage_Load"/>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=ASP.NET_Tutorial/Page_Lifecycle/Page_Load&amp;action=history"/>
		<updated>2026-04-29T23:13:02Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://nfex.ru/index.php?title=ASP.NET_Tutorial/Page_Lifecycle/Page_Load&amp;diff=3218&amp;oldid=prev</id>
		<title> в 15:30, 26 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=ASP.NET_Tutorial/Page_Lifecycle/Page_Load&amp;diff=3218&amp;oldid=prev"/>
				<updated>2010-05-26T15:30:57Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style=&quot;vertical-align: top;&quot; lang=&quot;ru&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Предыдущая&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Версия 15:30, 26 мая 2010&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;text-align: center;&quot; lang=&quot;ru&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(нет различий)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
			</entry>

	<entry>
		<id>http://nfex.ru/index.php?title=ASP.NET_Tutorial/Page_Lifecycle/Page_Load&amp;diff=3219&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=ASP.NET_Tutorial/Page_Lifecycle/Page_Load&amp;diff=3219&amp;oldid=prev"/>
				<updated>2010-05-26T12:00:04Z</updated>
		
		<summary type="html">&lt;p&gt;1 версия&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== The script block holds a subroutine named Page_Load, which is triggered when the page is first created. (C#)==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;%@ Page Language=&amp;quot;C#&amp;quot; %&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.1//EN&amp;quot; &amp;quot;http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;script runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
public delegate void PriceChangedEventHandler();&lt;br /&gt;
public class Product&lt;br /&gt;
{&lt;br /&gt;
    private string name;&lt;br /&gt;
    private decimal price;&lt;br /&gt;
    private string imageUrl;&lt;br /&gt;
    public string Name&lt;br /&gt;
    {&lt;br /&gt;
        get&lt;br /&gt;
        { return name; }&lt;br /&gt;
        set&lt;br /&gt;
        { name = value; }&lt;br /&gt;
    }&lt;br /&gt;
    public event PriceChangedEventHandler PriceChanged;&lt;br /&gt;
    public decimal Price&lt;br /&gt;
    {&lt;br /&gt;
        get&lt;br /&gt;
        { return price; }&lt;br /&gt;
        set&lt;br /&gt;
        {&lt;br /&gt;
            price = value;&lt;br /&gt;
            if (PriceChanged != null)&lt;br /&gt;
            {&lt;br /&gt;
                PriceChanged();&lt;br /&gt;
            }&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
    public string ImageUrl&lt;br /&gt;
    {&lt;br /&gt;
        get&lt;br /&gt;
        { return imageUrl; }&lt;br /&gt;
        set&lt;br /&gt;
        { imageUrl = value; }&lt;br /&gt;
    }&lt;br /&gt;
    public string GetHtml()&lt;br /&gt;
    {&lt;br /&gt;
        string htmlString;&lt;br /&gt;
        htmlString = &amp;quot;&amp;lt;h1&amp;gt;&amp;quot; + name + &amp;quot;&amp;lt;/h1&amp;gt;&amp;lt;br&amp;gt;&amp;quot;;&lt;br /&gt;
        htmlString += &amp;quot;&amp;lt;h3&amp;gt;Costs: &amp;quot; + price.ToString() + &amp;quot;&amp;lt;/h3&amp;gt;&amp;lt;br&amp;gt;&amp;quot;;&lt;br /&gt;
        htmlString += &amp;quot;&amp;lt;img src=&amp;quot;&amp;quot; + imageUrl + &amp;quot;&amp;quot; /&amp;gt;&amp;quot;;&lt;br /&gt;
        return htmlString;&lt;br /&gt;
    }&lt;br /&gt;
    public Product(string name, decimal price)&lt;br /&gt;
    {&lt;br /&gt;
        Name = name;&lt;br /&gt;
        Price = price;&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
    private void Page_Load(object sender, EventArgs e)&lt;br /&gt;
    {&lt;br /&gt;
        Product saleProduct = new Product(&amp;quot;A&amp;quot;, 49.99M);&lt;br /&gt;
        saleProduct.ImageUrl = &amp;quot;a.jpg&amp;quot;;&lt;br /&gt;
        Response.Write(saleProduct.GetHtml());&lt;br /&gt;
    }&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;html xmlns=&amp;quot;http://www.w3.org/1999/xhtml&amp;quot; &amp;gt;&lt;br /&gt;
&amp;lt;head&amp;gt;&lt;br /&gt;
    &amp;lt;title&amp;gt;Product Test&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;/head&amp;gt;&lt;br /&gt;
&amp;lt;body&amp;gt;&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>