Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Embedding Webforms

    Is there any way to embed a webform or something similar into another
    webform so that it renders correctly?

    I've been using pagelets but find them annoying as they can't be absolutly
    positioned and don't render when u embed them

    Cheers

    Psiman


    PsiMan Guest

  2. Similar Questions and Discussions

    1. CDONTS - WebForms - Pls Help
      I am hoping that someone can help me Here is what I want to do; I need to have a htm page that has text boxes that website visitors fill out...
    2. Webforms and HotKeys
      Oh Wow! thanks alot. :-) surely a great relief with this issue. Cheers
    3. HELP - WebForms as HttpResponseHandlers
      Hello All, I'm using the <httpHandlers> section of the web.config file to specify a webform class (WebForm1) that is the base class for...
    4. WebForms as HttpResponseHandlers?
      Hello All, I'm using the <httpHandlers> section of the web.config file to specify a webform class (WebForm1) that is the base class for...
    5. Embedding webforms controls in asp.net page?
      Is it possible to embed (rich) webform controls in an asp.net page? assuming the workstation has IE and the Framework installed of course. Like...
  3. #2

    Default Re: Embedding Webforms

    No, forms cannot be within forms. This violates the rules of HTML.
    But you can have controls within controls.
    And you could have a page within a page if you use an IFrame.
    Alternately, you could have a form AFTER another form on the same page.
    (But only one of them can be a runat=server form.)

    Here's more info on IFrames:
    [url]http://msdn.microsoft.com/workshop/author/dhtml/reference/objects/IFRAME.asp[/url]

    --
    I hope this helps,
    Steve C. Orr, MCSD
    [url]http://Steve.Orr.net[/url]


    "PsiMan" <simonm@contemi.nospam.co.uk> wrote in message
    news:%23SGa6NfRDHA.1624@tk2msftngp13.phx.gbl...
    > Is there any way to embed a webform or something similar into another
    > webform so that it renders correctly?
    >
    > I've been using pagelets but find them annoying as they can't be absolutly
    > positioned and don't render when u embed them
    >
    > Cheers
    >
    > Psiman
    >
    >

    Steve C. Orr, MCSD Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139