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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
|
//
// System.Web.UI.WebControls.DataBoundControl
//
// Authors:
// Ben Maurer (bmaurer@users.sourceforge.net)
// Sanjay Gupta (gsanjay@novell.com)
//
// (C) 2003 Ben Maurer
// (C) 2004 Novell, Inc. (http://www.novell.com)
//
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
#if NET_2_0
using System.Collections;
using System.Collections.Specialized;
using System.Text;
using System.Web.Util;
using System.ComponentModel;
using System.Security.Permissions;
namespace System.Web.UI.WebControls {
// CAS
[AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermission (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
// attributes
[DesignerAttribute ("System.Web.UI.Design.WebControls.DataBoundControlDesigner, " + Consts.AssemblySystem_Design, "System.ComponentModel.Design.IDesigner")]
public abstract class DataBoundControl : BaseDataBoundControl
{
DataSourceSelectArguments selectArguments;
DataSourceView currentView;
protected DataBoundControl ()
{
}
/* Used for controls that used to inherit from
* WebControl, so the tag can propagate upwards
*/
internal DataBoundControl (HtmlTextWriterTag tag) : base (tag)
{
}
protected virtual IDataSource GetDataSource ()
{
if (IsBoundUsingDataSourceID) {
Control namingContainer;
Control ctrl = null;
namingContainer = NamingContainer;
while (namingContainer != null) {
ctrl = namingContainer.FindControl (DataSourceID);
if (ctrl != null)
break;
namingContainer = namingContainer.NamingContainer;
}
if (ctrl == null)
throw new HttpException (string.Format ("A control with ID '{0}' could not be found.", DataSourceID));
if (!(ctrl is IDataSource))
throw new HttpException (string.Format ("The control with ID '{0}' is not a control of type IDataSource.", DataSourceID));
return (IDataSource) ctrl;
}
IDataSource ds = DataSource as IDataSource;
if (ds != null) return ds;
IEnumerable ie = DataSourceResolver.ResolveDataSource (DataSource, DataMember);
return new CollectionDataSource (ie);
}
protected virtual DataSourceView GetData ()
{
if (currentView == null)
UpdateViewData ();
return currentView;
}
DataSourceView InternalGetData ()
{
if (DataSource != null && IsBoundUsingDataSourceID)
throw new HttpException ("Control bound using both DataSourceID and DataSource properties.");
IDataSource ds = GetDataSource ();
if (ds != null)
return ds.GetView (DataMember);
else
return null;
}
protected override void OnDataPropertyChanged ()
{
base.OnDataPropertyChanged ();
currentView = null;
}
protected virtual void OnDataSourceViewChanged (object sender, EventArgs e)
{
RequiresDataBinding = true;
}
protected override void OnPagePreLoad (object sender, EventArgs e)
{
base.OnPagePreLoad (sender, e);
UpdateViewData ();
}
void UpdateViewData ()
{
DataSourceView view = InternalGetData ();
if (view == currentView) return;
if (currentView != null)
currentView.DataSourceViewChanged -= new EventHandler (OnDataSourceViewChanged);
currentView = view;
if (view != null)
view.DataSourceViewChanged += new EventHandler (OnDataSourceViewChanged);
}
protected internal override void OnLoad (EventArgs e)
{
if (!Page.IsPostBack || (IsViewStateEnabled && !IsDataBound))
RequiresDataBinding = true;
// MSDN: The ConfirmInitState method sets the initialized state of the data-bound
// control. The method is called by the DataBoundControl class in its OnLoad method.
ConfirmInitState ();
base.OnLoad(e);
}
protected internal virtual void PerformDataBinding (IEnumerable data)
{
}
protected override void ValidateDataSource (object dataSource)
{
if (dataSource == null || dataSource is IListSource || dataSource is IEnumerable || dataSource is IDataSource)
return;
throw new ArgumentException ("Invalid data source source type. The data source must be of type IListSource, IEnumerable or IDataSource.");
}
[ThemeableAttribute (false)]
[DefaultValueAttribute ("")]
[WebCategoryAttribute ("Data")]
public virtual string DataMember {
get { return ViewState.GetString ("DataMember", ""); }
set { ViewState["DataMember"] = value; }
}
[IDReferencePropertyAttribute (typeof(DataSourceControl))]
public override string DataSourceID {
get { return ViewState.GetString ("DataSourceID", ""); }
set {
ViewState ["DataSourceID"] = value;
base.DataSourceID = value;
}
}
//
// See DataBoundControl.MarkAsDataBound msdn doc for the code example
//
protected override void PerformSelect ()
{
// Call OnDataBinding here if bound to a data source using the
// DataSource property (instead of a DataSourceID), because the
// databinding statement is evaluated before the call to GetData.
if (!IsBoundUsingDataSourceID)
OnDataBinding (EventArgs.Empty);
SelectArguments = CreateDataSourceSelectArguments ();
GetData ().Select (SelectArguments, new DataSourceViewSelectCallback (OnSelect));
MarkAsDataBound ();
// Raise the DataBound event.
OnDataBound (EventArgs.Empty);
}
void OnSelect (IEnumerable data)
{
// Call OnDataBinding only if it has not already been
// called in the PerformSelect method.
if (IsBoundUsingDataSourceID) {
OnDataBinding (EventArgs.Empty);
}
// The PerformDataBinding method binds the data in the
// retrievedData collection to elements of the data-bound control.
PerformDataBinding (data);
}
protected virtual DataSourceSelectArguments CreateDataSourceSelectArguments ()
{
return DataSourceSelectArguments.Empty;
}
protected DataSourceSelectArguments SelectArguments {
get {
if (selectArguments == null)
selectArguments = CreateDataSourceSelectArguments ();
return selectArguments;
}
private set {
selectArguments = value;
}
}
bool IsDataBound {
get {
object dataBound = ViewState ["DataBound"];
return dataBound != null ? (bool) dataBound : false;
}
set {
ViewState ["DataBound"] = value;
}
}
protected void MarkAsDataBound ()
{
IsDataBound = true;
}
}
}
#endif
|