i have a document library in sharepoint
what is the field called for the url of the uploaded documents? see commented line below to see what i am trying to do
SPDataSource dataSource = new SPDataSource();
dataSource.List = site.RootWeb.Lists["myList"];
this.myDropDownList.DataSource = dataSource;
this.myDropDownList.DataTextField = "Name";
//this.myDropDownList.DataValueField = "URL";// what should this be??
this.myDropDownList.DataBind();