Parameter::DefaultValue Property
Specifies a default value for the parameter, should the value that the parameter is bound to be uninitialized when the Evaluate method is called.
Assembly: System.Web (in System.Web.dll)
The DefaultValue property is used in scenarios where the parameter is bound to a value, but the value is null or cannot be resolved when the Parameter object is evaluated.
If the DefaultValue property of the parameter is changed, the OnParameterChanged method is called.
The following code example demonstrates how to retrieve a single data record using an ObjectDataSource control and display it in a DetailsView control. The ObjectDataSource control retrieves a specific employee record by calling the GetEmployee method of the EmployeeLogic class. The GetEmployee method requires an employee ID parameter. The ObjectDataSource control uses a QueryStringParameter object in its SelectParameters collection to pass an ID to the GetEmployee method in this example.
To view the example implementation of the EmployeeLogic class and the GetEmployee method, see the ObjectDataSource class overview.
Available since 2.0