I have been searching for hours , how can I use an application variable in my datasource as a parameter . . .
Does anyone know
Printable View
I have been searching for hours , how can I use an application variable in my datasource as a parameter . . .
Does anyone know
You could either use <% %> or you could modify it in the codebehind
SqlDataSource1.SelectParameters("employeeid").Value = TextBox1.Text
(It may be .Value or .DefaultValue)