J
Jasonkimberson
I am doing a data pull of HTML from a database that will be put into a
drop down menu
currently after i pull and populate the information, it converts my <
into <
whats the work around for this?
HTML code
<td><asp
ropDownList ID="ddlLocation" Runat="server" /></td>
Code
ddlOfficeList.DataSource = dt;
ddlOfficeList.DataTextField = "urlpath";
ddlOfficeList.DataValueField = "field2";
ddlOfficeList.DataBind();
I want the text field to aslo have the url path as a link
drop down menu
currently after i pull and populate the information, it converts my <
into <
whats the work around for this?
HTML code
<td><asp

Code
ddlOfficeList.DataSource = dt;
ddlOfficeList.DataTextField = "urlpath";
ddlOfficeList.DataValueField = "field2";
ddlOfficeList.DataBind();
I want the text field to aslo have the url path as a link