Re-use asp:ObjectDataSource

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • =?Utf-8?B?U0FM?=

    Re-use asp:ObjectDataSource

    Does anyone know how to re-use the asp:ObjectDataS ource control?

    What I want to do is add ONE asp:ObjectDataS ource control to my Web form,
    then BIND it to MULTIPLE DropDownList boxes in the Code Behind, since the
    DropDownList boxes will all reference the same Stored Procedure. However,
    you can not do that since that ObjectDataSourc e is already bound to another
    control on the form. The only way I know to do this is to add multiple
    asp:ObjectDataS ource controls to the form with their own unique ID, which
    seems redundant if all the ObjectDataSourc es will use the same store
    procedure with the same parameters.

    In the Code Behind, how can I create a NEW instance of the
    asp:ObjectDataS ource control for each of the DropDownList boxes I want to
    BIND to?
  • Bob Barrows [MVP]

    #2
    Re: Re-use asp:ObjectDataS ource

    SAL wrote:
    Does anyone know how to re-use the asp:ObjectDataS ource control?
    There was no way for you to know it (except maybe by browsing through some
    of the previous questions in this newsgroup before posting yours - always a
    recommended practice) , but this is a classic (COM-based) asp newsgroup.
    ASP.Net bears very little resemblance to classic ASP so, while you may be
    lucky enough to find a dotnet-knowledgeable person here who can answer your
    question, you can eliminate the luck factor by posting your question to a
    group where those dotnet-knowledgeable people hang out. I suggest
    microsoft.publi c.dotnet.framew ork.aspnet or the forums at www.asp.net.

    --
    Microsoft MVP - ASP/ASP.NET
    Please reply to the newsgroup. This email account is my spam trap so I
    don't check it very often. If you must reply off-line, then remove the
    "NO SPAM"


    Comment

    • =?Utf-8?B?U0FM?=

      #3
      Re: Re-use asp:ObjectDataS ource

      Thanks. Haven't been here in awhile and Microsoft changed things, so I
      thought I posted it in the right spot. Sorry for the trouble.

      "Bob Barrows [MVP]" wrote:
      SAL wrote:
      Does anyone know how to re-use the asp:ObjectDataS ource control?
      >
      There was no way for you to know it (except maybe by browsing through some
      of the previous questions in this newsgroup before posting yours - always a
      recommended practice) , but this is a classic (COM-based) asp newsgroup.
      ASP.Net bears very little resemblance to classic ASP so, while you may be
      lucky enough to find a dotnet-knowledgeable person here who can answer your
      question, you can eliminate the luck factor by posting your question to a
      group where those dotnet-knowledgeable people hang out. I suggest
      microsoft.publi c.dotnet.framew ork.aspnet or the forums at www.asp.net.
      >
      --
      Microsoft MVP - ASP/ASP.NET
      Please reply to the newsgroup. This email account is my spam trap so I
      don't check it very often. If you must reply off-line, then remove the
      "NO SPAM"
      >
      >
      >

      Comment

      Working...