Hi!
I'm going mad trying to develope a little more the bugbase...
I want to assign a bug to a user (that exists in the aspnet_user file).
In the addeditbug.
vb and .aspx I added a dropdownlist to select the user, also I've added I new field called reportmemberId in the Bug table...
I can save the Bug correctly, with the reprtmemberid included, but when I edit the bug I don't know
the way to recover and, after, find the value Id (guid) for this user, and show it
like the feature (for example).
If lstFeature.Items.FindByValue(myBug.Feature.Value.T oString()) IsNot Nothing Then
lstFeature.Items.FindByValue(myBug.Feature.Value.T oString()).Selected = True
End If
this is my example:
If lstReportUser.Items.FindByValue(myTask.ReportMembe rId.ToString) IsNot Nothing Then
lstReportUser.Items.FindByValue(myTask.ReportMembe rId.ToString()).Selected = True
reportmemberId is a guid filed, so it can't be converted to string to find and display it in the dropdownlist
Maybe I am wrong in the way to do it... May You help me with any indication, please? Thanks a lot.