Hola a todos me llamo erick y mi pregunta es la siguiente quiero enviar lo que inserto en mi formulario asp.net visual basic mediante un post a un formulario php.
La direccion a la cual quiero enviar el post es la siguiente:
http://209.4.187.234/controlpanel/
Pero quiero enviarle los datos desde mi aplicacion aspx a el formulario de la direccion anterior adjunto codigo aspx
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server" method="get" action="http://209.4.187.234/controlpanel/index.php?do=">
<div>
<asp:TextBox ID="Password" runat="server"></asp:TextBox><br />
<asp:TextBox ID="Username" runat="server"></asp:TextBox><br />
<asp:Button ID="submit" runat="server" Text="Button" /></div>
</form>
</body>
</html>
Si alguien tiene alguna idea o algun codigo para hacer esta funcion por favor ayudadme.