I\'m trying to get data from SQL Server and use it in a formview, but the formview control won\'t get any data from the datasource.
(The datasource gets parameter on pag
You have two problems:
@
in your parameter name - just the name will do.So use this code instead:
protected void Page_Load(object sender, EventArgs e)
{
SqlDataSource1.SelectParameters["idd"].DefaultValue = "077763554";
FormView1.DataBind();
}
That should do the trick - set the .DefaultValue
on the existing parameter, and use the idd
parameter name, as defined in your markup (
)