-
Notifications
You must be signed in to change notification settings - Fork 0
/
EjemploTransferenciaA.aspx
35 lines (25 loc) · 1.16 KB
/
EjemploTransferenciaA.aspx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<%@ Page Title="Ejemplo Transferencia A" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="EjemploTransferenciaA.aspx.cs" Inherits="WebFinal.EjemploTrasnferenciaA" %>
<asp:Content ID="BodyContent" ContentPlaceHolderID="MainContent" runat="server">
<div>
<h1>GET</h1>
<asp:TextBox ID="txtDemo" runat="server"></asp:TextBox>
<asp:Button ID="btnSubmit" runat="server" Text="Submit" OnClick="btnSubmit_Click" />
<div>
<h1>POST</h1>
<asp:TextBox ID="TextBox1"
runat="Server">
</asp:TextBox>
<br />
<br />
<asp:Button ID="Button1"
Text="Post back to this page"
runat="Server"></asp:Button>
<br />
<br />
<asp:Button ID="Button2"
Text="Post value to another page"
PostBackUrl="EjemploTransferenciaB.aspx"
runat="Server"></asp:Button>
</div>
</div>
</asp:Content>