tag object

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

    #1

    tag object

    Hi,

    it's possible to use a html tag object as a tag iframe. When a declare in a
    acsx file the tag object, i can't access to them with the codebehind C#.
    Visual Studio says that there is no definition for the ID of the tag object.

    Can you help me?
    Regards
    Michele
  • Eliyahu Goldin

    #2
    Re: tag object

    Do you mean you have an <iframe id="myFrame" .. /tag in the markup and you
    want to access it from c#? If that's what you need, just add runat="server":

    <iframe id="myFrame" runat="server" ... />

    --
    Eliyahu Goldin,
    Software Developer
    Microsoft MVP [ASP.NET]




    "miki79" <miki79@discuss ions.microsoft. comwrote in message
    news:C5630ACA-5A4A-4131-B036-72E17B2DCF92@mi crosoft.com...
    Hi,
    >
    it's possible to use a html tag object as a tag iframe. When a declare in
    a
    acsx file the tag object, i can't access to them with the codebehind C#.
    Visual Studio says that there is no definition for the ID of the tag
    object.
    >
    Can you help me?
    Regards
    Michele

    Comment

    • =?Utf-8?B?bWlraTc5?=

      #3
      Re: tag object

      Excuse me for the bad question.

      i have the <object id="myObject" .. runat="server" /tag in the markup and
      i want access it from C#

      example:

      this.myObject.A ttributes.Add(" data", "http://www.microsoft.c om");

      but Visual Studio says that there is no definition for myObject. I must use
      <object instead of <iframe for problem of accessibility

      Regards
      Michele




      "Eliyahu Goldin" wrote:
      Do you mean you have an <iframe id="myFrame" .. /tag in the markup and you
      want to access it from c#? If that's what you need, just add runat="server":
      >
      <iframe id="myFrame" runat="server" ... />
      >
      --
      Eliyahu Goldin,
      Software Developer
      Microsoft MVP [ASP.NET]


      >
      >
      "miki79" <miki79@discuss ions.microsoft. comwrote in message
      news:C5630ACA-5A4A-4131-B036-72E17B2DCF92@mi crosoft.com...
      Hi,

      it's possible to use a html tag object as a tag iframe. When a declare in
      a
      acsx file the tag object, i can't access to them with the codebehind C#.
      Visual Studio says that there is no definition for the ID of the tag
      object.

      Can you help me?
      Regards
      Michele
      >
      >
      >

      Comment

      • bruce barker

        #4
        Re: tag object

        just like script, an <object runat=server id=myObjectdefi nes a server
        side object (not a client side) that is accessible from c#. its
        properties match the object type of course.

        to define a client side object from the codebehind you need to use a
        different control.

        -- bruce (sqlwork.com)

        miki79 wrote:
        Excuse me for the bad question.
        >
        i have the <object id="myObject" .. runat="server" /tag in the markup and
        i want access it from C#
        >
        example:
        >
        this.myObject.A ttributes.Add(" data", "http://www.microsoft.c om");
        >
        but Visual Studio says that there is no definition for myObject. I must use
        <object instead of <iframe for problem of accessibility
        >
        Regards
        Michele
        >
        >
        >
        >
        "Eliyahu Goldin" wrote:
        >
        >Do you mean you have an <iframe id="myFrame" .. /tag in the markup and you
        >want to access it from c#? If that's what you need, just add runat="server":
        >>
        ><iframe id="myFrame" runat="server" ... />
        >>
        >--
        >Eliyahu Goldin,
        >Software Developer
        >Microsoft MVP [ASP.NET]
        >http://msmvps.com/blogs/egoldin
        >http://usableasp.net
        >>
        >>
        >"miki79" <miki79@discuss ions.microsoft. comwrote in message
        >news:C5630AC A-5A4A-4131-B036-72E17B2DCF92@mi crosoft.com...
        >>Hi,
        >>>
        >>it's possible to use a html tag object as a tag iframe. When a declare in
        >>a
        >>acsx file the tag object, i can't access to them with the codebehind C#.
        >>Visual Studio says that there is no definition for the ID of the tag
        >>object.
        >>>
        >>Can you help me?
        >>Regards
        >>Michele
        >>
        >>

        Comment

        • =?Utf-8?B?bWlraTc5?=

          #5
          Re: tag object

          Hi, but i don't be able to access at the myObject from C#. I don't understand
          why if i declare an IFRAME, i can access to it, but it's not possibile if i
          declare a tag object.

          Regard
          Michele

          "bruce barker" wrote:
          just like script, an <object runat=server id=myObjectdefi nes a server
          side object (not a client side) that is accessible from c#. its
          properties match the object type of course.
          >
          to define a client side object from the codebehind you need to use a
          different control.
          >
          -- bruce (sqlwork.com)
          >
          miki79 wrote:
          Excuse me for the bad question.

          i have the <object id="myObject" .. runat="server" /tag in the markup and
          i want access it from C#

          example:

          this.myObject.A ttributes.Add(" data", "http://www.microsoft.c om");

          but Visual Studio says that there is no definition for myObject. I must use
          <object instead of <iframe for problem of accessibility

          Regards
          Michele




          "Eliyahu Goldin" wrote:
          Do you mean you have an <iframe id="myFrame" .. /tag in the markup and you
          want to access it from c#? If that's what you need, just add runat="server":
          >
          <iframe id="myFrame" runat="server" ... />
          >
          --
          Eliyahu Goldin,
          Software Developer
          Microsoft MVP [ASP.NET]


          >
          >
          "miki79" <miki79@discuss ions.microsoft. comwrote in message
          news:C5630ACA-5A4A-4131-B036-72E17B2DCF92@mi crosoft.com...
          >Hi,
          >>
          >it's possible to use a html tag object as a tag iframe. When a declare in
          >a
          >acsx file the tag object, i can't access to them with the codebehind C#.
          >Visual Studio says that there is no definition for the ID of the tag
          >object.
          >>
          >Can you help me?
          >Regards
          >Michele
          >
          >
          >

          Comment

          Working...