DisplayASP.NETInHTML

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • gh

    #1

    DisplayASP.NETInHTML

    I have an ASP.NET page with a grid and some combo boxes on it, that get
    filled form data sources, for the user to make selections from. My
    client has a content designer\develo per that would like to call this
    page from my website and and have it display in his web page. He has
    been doing this for his other clients using php, he claims, and would
    like to do the same with asp.net. Is it possible for him to add tags to
    his html, so my asp.net controls will render in his html page? I am
    thinking this would be like a java servlet, but I am not sure.

    TIA
  • Mark Fitzpatrick

    #2
    Re: DisplayASP.NETI nHTML

    Easiest way is for him to call your page from within an iframe (need to
    remove additional decoration though so it's only the and not things like
    navigation menus and such). That way it's running on your site but the
    resultant page is being embedded into his.

    --
    Hope this helps,
    Mark Fitzpatrick
    Microsoft MVP - Expression

    "gh" <gh@att.netwrot e in message
    news:OBbpkF7VIH A.4476@TK2MSFTN GP06.phx.gbl...
    >I have an ASP.NET page with a grid and some combo boxes on it, that get
    >filled form data sources, for the user to make selections from. My client
    >has a content designer\develo per that would like to call this page from my
    >website and and have it display in his web page. He has been doing this
    >for his other clients using php, he claims, and would like to do the same
    >with asp.net. Is it possible for him to add tags to his html, so my
    >asp.net controls will render in his html page? I am thinking this would be
    >like a java servlet, but I am not sure.
    >
    TIA

    Comment

    • gh

      #3
      Re: DisplayASP.NETI nHTML

      Mark Fitzpatrick wrote:
      Easiest way is for him to call your page from within an iframe (need to
      remove additional decoration though so it's only the and not things like
      navigation menus and such). That way it's running on your site but the
      resultant page is being embedded into his.
      >
      Mark:

      Are IFrames compatable with any browser? I have a lot of MAC users.

      TIA

      Comment

      • Mark Fitzpatrick

        #4
        Re: DisplayASP.NETI nHTML

        They should be as they've been supported in HTML for a long time and serve
        some very good use cases such as the one you're describing. They aren't the
        same as regular framesets, which HTML has been trying to get rid of for
        ages.


        --
        Hope this helps,
        Mark Fitzpatrick
        Microsoft MVP - Expression

        "gh" <gh@att.netwrot e in message
        news:eGtNPJ%23V IHA.4440@TK2MSF TNGP06.phx.gbl. ..
        Mark Fitzpatrick wrote:
        >Easiest way is for him to call your page from within an iframe (need to
        >remove additional decoration though so it's only the and not things like
        >navigation menus and such). That way it's running on your site but the
        >resultant page is being embedded into his.
        >>
        Mark:
        >
        Are IFrames compatable with any browser? I have a lot of MAC users.
        >
        TIA

        Comment

        Working...