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
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