forked from fossabot/stilettoWebsite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEntityObjectList.aspx.cs
More file actions
39 lines (33 loc) · 1.26 KB
/
EntityObjectList.aspx.cs
File metadata and controls
39 lines (33 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// --------------------------------------------------------------------------------
// Copyright AspDotNetStorefront.com. All Rights Reserved.
// http://www.aspdotnetstorefront.com
// For details on this license please visit the product homepage at the URL above.
// THE ABOVE NOTICE MUST REMAIN INTACT.
// --------------------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using AspDotNetStorefrontCore;
using AspDotNetStorefrontControls;
using AjaxControlToolkit;
using Telerik.Web.UI;
namespace AspDotNetStorefront
{
public partial class EntityObjectListPage : System.Web.UI.Page
{
protected override void OnInit(EventArgs e)
{
// TBD:
// Deny non-Admin users
ctrlObjectList.ThisCustomer = Customer.Current;
string entityType = Request.QueryStringCanBeDangerousContent("entityType");
ctrlObjectList.EntityType = entityType;
ctrlObjectList.TextBoxClientID = Request.QueryStringCanBeDangerousContent("TextBoxClientID");
this.Title = "{0} Search".FormatWith(entityType);
base.OnInit(e);
}
}
}