Mercurial > pub > bltoolkit
annotate Demo/Asp.Net/Web/Items.aspx.cs @ 9:1e85f66cf767 default tip
update bltoolkit
author | nickolay |
---|---|
date | Thu, 05 Apr 2018 20:53:26 +0300 |
parents | f990fcb411a9 |
children |
rev | line source |
---|---|
0 | 1 using System; |
2 using System.Web.UI; | |
3 | |
4 using PetShop.BusinessLogic; | |
5 | |
6 namespace PetShop.Web | |
7 { | |
8 public partial class Items : PageBase | |
9 { | |
10 protected void Page_Load(object sender, EventArgs e) | |
11 { | |
12 Page.Title = new ProductManager().GetProduct(Request.QueryString["productId"]).Name; | |
13 } | |
14 } | |
15 } |