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
It seems like you are adding 2 parameters here. One declarative and one in your code behind.
Try to add only the parameter in your code behind. also change the name to idd
instead of @idd
.
protected void Page_Load(object sender, EventArgs e)
{
SqlDataSource1.SelectParameters.Add("idd", "077763554");
FormView1.DataBind();
}