RE: FN-FORUM: On the right track?
date posted 8th December 2005 18:39
I have written something that allows remote posting to external forms. Its
not 100% but works for what I needed it for, and this is it in a nutshell:
System.Web.HttpContext.Current.Response.Clear();
System.Web.HttpContext.Current.Response.Write("");
System.Web.HttpContext.Current.Response.Write(string.Format("",FormName));
System.Web.HttpContext.Current.Response.Write(string.Format("",FormName,Method,processingURL));
System.Web.HttpContext.Current.Response.Write(theHTML);
System.Web.HttpContext.Current.Response.Write("");
System.Web.HttpContext.Current.Response.Write("");
System.Web.HttpContext.Current.Response.End();
HTH, Simon
:: -----Original Message-----
:: You could replicate the form and their appropriate username
:: / password boxes
:: either
:: in a multi-form page, or use a hidden iframe. The field
:: names need to match
:: the
:: remote websites, then you can populate them and submit the
:: form using
:: javascript
:: once a user clicks on the submit / login button.