Re: [ADVANCED-DOTNET] Receiving an http post.

2008-07-08 Thread Brad Bode
The posted data will be on the Request - try something like: protected void Page_Load(object sender, EventArgs e) { XmlDocument incomingXML = new XmlDocument(); incomingXML.Load(Request.InputStream); ... } On Tue, Jul 8, 2008 at 8:43 AM, Mark Nicholls <[EMAIL PROTECTED]> wrote: > I've got a 3

Re: [ADVANCED-DOTNET] Creating a textbox from a string...

2007-04-19 Thread Brad Bode
Im not sure but you might want something like: TextBox a = this.Controls.Find("FirstName", true)[0] as TextBox; grabbing element 0 is assuming you only have one and only one control named FirstName on this form. On 4/19/07, Phil Sayers <[EMAIL PROTECTED]> wrote: would databinding help you here