Welcome to mirror list, hosted at ThFree Co, Russian Federation.

DataBindingBuilder.cs « System.Web.UI « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: af52c689210d8c0c5c260aca5192fb8c87bf9b19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//
// System.Web.UI.DataBindingBuilder
//
// Authors:
// 	Gonzalo Paniagua Javier (gonzalo@ximian.com)
//
// (C) 2003 Ximian, Inc. (http://www.ximian.com)
//

using System;
using System.Web.Compilation;

namespace System.Web.UI
{
	sealed class DataBindingBuilder : CodeBuilder
	{
		public DataBindingBuilder (string code, ILocation location)
			: base (code, false, location)
		{
			SetControlType (typeof (DataBoundLiteralControl));
		}
	}
}