How to post a page from asp.net to classic ASP - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T19:44:57Zhttp://stackoverflow.com/feeds/question/253142http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/253142/how-to-post-a-page-from-asp-net-to-classic-asp2How to post a page from asp.net to classic ASPdigiguru2008-10-31T10:53:54Z2008-11-27T15:28:27Z
<p>I'd like to post some form variables into a classic ASP page. I don't want to have to alter the classic ASP pages, because of the amount of work that would need to be done, and the amount of pages that consume them.</p>
<p>The classic ASP page expects form variables Username and Userpassword to be submitted to them.</p>
<p>username = Request.Form("UserName")
userpassword = Request.Form("Userpassword")</p>
<p>It then performs various actions and sets up sessions, going into a asp applciation.</p>
<p>I want to submit these variables into the page from ASP.NET, but the login control is nested inside usercontrols and templates, so I can't get the form element's names to be "username" and "UserPassword".</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/253142/how-to-post-a-page-from-asp-net-to-classic-asp/253195#2531950Answer by digiguru for How to post a page from asp.net to classic ASPdigiguru2008-10-31T11:17:37Z2008-11-03T09:16:42Z<p>I found this on <a href="http://www.jigar.net/articles/viewhtmlcontent78.aspx" rel="nofollow">another site</a>. </p>
<p>I will build up a small form with just the variables you want, and output it to the client and submit itself. It's pretty neat, but it comes with the problem of breaking the back button, and sending the password back to the client in a form unencrypted.</p>
<pre><code>public class RemotePost{
private System.Collections.Specialized.NameValueCollection Inputs
= new System.Collections.Specialized.NameValueCollection() ;
public string Url = "" ;
public string Method = "post" ;
public string FormName = "form1" ;
public void Add( string name, string value ){
Inputs.Add(name, value ) ;
}
public void Post(){
System.Web.HttpContext.Current.Response.Clear() ;
System.Web.HttpContext.Current.Response.Write( "<html><head>" ) ;
System.Web.HttpContext.Current.Response.Write( string .Format( "</head><body onload=\"document.{0}.submit()\">" ,FormName)) ;
System.Web.HttpContext.Current.Response.Write( string .Format( "<form name=\"{0}\" method=\"{1}\" action=\"{2}\" >" ,
FormName,Method,Url)) ;
for ( int i = 0 ; i< Inputs.Keys.Count ; i++){
System.Web.HttpContext.Current.Response.Write( string .Format( "<input name=\"{0}\" type=\"hidden\" value=\"{1}\">" ,Inputs.Keys[i],Inputs[Inputs.Keys[i]])) ;
}
System.Web.HttpContext.Current.Response.Write( "</form>" ) ;
System.Web.HttpContext.Current.Response.Write( "</body></html>" ) ;
System.Web.HttpContext.Current.Response.End() ;
}
}
</code></pre>
http://stackoverflow.com/questions/253142/how-to-post-a-page-from-asp-net-to-classic-asp/253474#2534741Answer by HectorMac for How to post a page from asp.net to classic ASPHectorMac2008-10-31T13:31:37Z2008-10-31T13:31:37Z<p>Don't use the asp.net login control (if you are).</p>
<p>Use simple html for the user name/password textboxes in your user control <strong><em>without</em></strong> runat="server":</p>
<pre><code><input type="text" name="UserName" />
<input type="password" name="Userpassword" />
<asp:Button ID="btnLogin" runat="server" PostBackUrl="Destination.asp" />
</code></pre>
<p>Set the PostBackUrl property on the button to you classic asp url and all should be fine.</p>
http://stackoverflow.com/questions/253142/how-to-post-a-page-from-asp-net-to-classic-asp/256140#2561402Answer by sliderhouserules for How to post a page from asp.net to classic ASPsliderhouserules2008-11-01T21:30:19Z2008-11-04T03:31:53Z<p>You can't really "forward" a POST on, like you're wanting to do (in your OP). The client has to initiate the POST to your ASP page(s) (which the code in your second post is doing).</p>
<p><hr /></p>
<p>Here's the self-POSTing code from your own reply so you can mark an answer, like you suggested:</p>
<pre><code>public class RemotePost{
private System.Collections.Specialized.NameValueCollection Inputs
= new System.Collections.Specialized.NameValueCollection() ;
public string Url = "" ;
public string Method = "post" ;
public string FormName = "form1" ;
public void Add( string name, string value ){
Inputs.Add(name, value ) ;
}
public void Post(){
System.Web.HttpContext.Current.Response.Clear() ;
System.Web.HttpContext.Current.Response.Write( "<html><head>" ) ;
System.Web.HttpContext.Current.Response.Write( string .Format( "</head><body onload=\"document.{0}.submit()\">" ,FormName)) ;
System.Web.HttpContext.Current.Response.Write( string .Format( "<form name=\"{0}\" method=\"{1}\" action=\"{2}\" >" ,
FormName,Method,Url)) ;
for ( int i = 0 ; i< Inputs.Keys.Count ; i++){
System.Web.HttpContext.Current.Response.Write( string .Format( "<input name=\"{0}\" type=\"hidden\" value=\"{1}\">" ,Inputs.Keys[i],Inputs[Inputs.Keys[i]])) ;
}
System.Web.HttpContext.Current.Response.Write( "</form>" ) ;
System.Web.HttpContext.Current.Response.Write( "</body></html>" ) ;
System.Web.HttpContext.Current.Response.End() ;
}
}
</code></pre>
http://stackoverflow.com/questions/253142/how-to-post-a-page-from-asp-net-to-classic-asp/324034#3240340Answer by Mous for How to post a page from asp.net to classic ASPMous2008-11-27T15:28:27Z2008-11-27T15:28:27Z<p>is there any simple illustration ? </p>