Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeArchived Discus...Archived Discus...Developing Under Previous Versions of .NETDeveloping Under Previous Versions of .NETASP.Net 2.0ASP.Net 2.0Binding to DropdownlistBinding to Dropdownlist
Previous
 
Next
New Post
10/8/2007 10:09 PM
 

Hi,

I'm very new with ASP.NET, and DNN. I'd greatly appreciate your patience with me, and help me out here.
I'm building my own module, and have problems trying to bind data to my dropdownlist.
Here's a snapshot/extract of what I have done.

  1. Stored Procs:
    • I've created a Storedprocedure "YourCompany_MyModule_GetCategories"
    • CREATE PROCEDURE {databaseOwner}[{objectQualifier}YourCompany_MyModule_GetCategories]
      (
      @ModuleID int
      )
      AS
      SELECT CategoryID, CategoryName, CategoryDesc
      FROM {objectQualifier}YourCompany_MyModule_Categories
      WHERE (ModuleID = @ModuleID)
      order by CategoryName
      RETURN
  2. App_Code\MyModule\SqlDataProvider.vb:
    • Public Overrides Function YourCompany_MyModule_GetCategories(ByVal ModuleId As Integer) As IDataReader
      Return CType(SqlHelper.ExecuteReader(ConnectionString, GetFullyQualifiedName("YourCompany_MyModule_GetCategories"), ModuleId), IDataReader)
      End Function
  3. App_Code\MyModule\DataProvider.vb:
    • Public MustOverride Function YourCompany_MyModule_GetCategories(ByVal ModuleId As Integer) As IDataReader
  4. App_Code\MyModule\MyModuleInfo.vb:
    • I've set and get the various variables : _CategoryID, _CategoryName, _CategoryDesc, _ModuleID, etc...
  5. App_Code\MyModule\MyModuleController.vb:
    • In here, I've created a function to return the list.
    • Public Shared Function MyModule_GetCategories(ByVal ModuleId As Integer) As List(Of MyModuleInfo)
       Return CBO.FillCollection(Of MyModuleInfo)(DataProvider.Instance().YourCompany_MyModule_GetCategories(ModuleId))
      End Function
  6. DesktopModules\MyModule\ViewMyModule.ascx:
    • I'd be displaying the dropdownlist here, to enable users to select the category.
    • <asp:dropdownList ID="list1" runat="server" />

Now, I'm stuck. How do I:

  • Initialise the list (to trigger the function, and return the list of categories)
  • Bind this list to the dropdownlist - "list1"

Thanks very much for your attention and help.

 

 

 

 

 

 
Previous
 
Next
HomeHomeArchived Discus...Archived Discus...Developing Under Previous Versions of .NETDeveloping Under Previous Versions of .NETASP.Net 2.0ASP.Net 2.0Binding to DropdownlistBinding to Dropdownlist


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out