Mega Code Archive
Using ASP NET Parameters with DataSource Controls
The SqlDataSource, AccessDataSource, LinqDataSource, and ObjectDataSource controls all support the following types of Parameter objects:
Parameter: Represents an arbitrary static value.
ControlParameter: Represents the value of a control or page property.
CookieParameter: Represents the value of a browser cookie.
FormParameter: Represents the value of an HTML form field.
ProfileParameter: Represents the value of a Profile property.
QueryStringParameter: Represents the value of a query string field.
SessionParameter: Represents the value of an item stored in Session state.
<%@ Page Language="C#" %>
Show Control Parameter