How can i replace db column name with Global varia
How could I replace the DataTextField=âTitleâ with the following global variable DataTextField=âGlobals.ThisReaderDeparâ what are the missing tags????
<asp:DropDownList ID="ddlDepartments" runat="server" DataSourceID="objAllDepartments"
DataTextField="Title" DataValueField="ID" SelectedValue='<%# Bind("DepartmentID") %>' Width="100%" />
|