Skip to Content
0
Former Member
Dec 26, 2007 at 06:32 AM

user control error?

17 Views

Hi,

i have created sample plugin using dropdownlist but it shows only System.data.datarowview, i wants to get user name below attached code pls guide me

protected void Page_Load(object sender, EventArgs e)

{

NPBasePage bp = ((NPBasePage)Page);

if (!Page.IsPostBack)

{

// treemenu.LinkBase = bp.VirtualPath;

DropDownList1.DataSource = NPUser.GetUserList(bp.ConnectionString);

DropDownList1.DataBind();

}

}

Edited by: kannan desikan on Dec 26, 2007 7:34 AM