I want to create a small web game where the user will make the decision of the characters at runtime. At the moment I have the following screen:
Whentheuserclicksontheleftbutton,forexample,Iwouldliketocreatealabelbelowtheleftbutton,alongwith2buttonsAandB,alsodefiningablockofcodeonthebuttonA,andanotheroneforthebuttonbuttonB.Visually,afterclickingtheleftbutton,itwouldlooklikethis:
C#codeIhaverightnow:
usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Web;usingSystem.Web.UI;usingSystem.Web.UI.WebControls;namespaceProjetoG1{publicpartialclassPadrao:System.Web.UI.Page{protectedvoidPage_Load(objectsender,EventArgse){Response.Write("Seja bem vindo(a) ao futuro game!" + "<br>");
}
protected void btnEsquerda_Click(object sender, EventArgs e)
{
Response.Write("Você escolheu o botão esquerdo, então irá terá que escolhe entre os botões A e B");
/* Aqui é onde quero criar o botão A e B, incluindo o código onclick que será executado quando esses botões
Forem clicados */
}
protected void btnDireita_Click(object sender, EventArgs e)
{
Response.Write("Você escolheu o botão direito, então irá terá que escolhe entre os botões C e D");
/* Aqui é onde quero criar o botão C e D, incluindo o código onclick que será executado quando esses botões
Forem clicados */
}
}
}
HTML code:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Padrao.aspx.cs" Inherits="ProjetoG1.Padrao" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
Teste de interação com o usuário. Escolhe o botão da esquerda ou direita para continuar. A história seguirá rumos diferentes em cada um dos botões.<br />
</div>
<asp:Button ID="btnEsquerda" runat="server" OnClick="btnEsquerda_Click" Text="Esquerda" />
<asp:Button ID="btnDireita" runat="server" OnClick="btnDireita_Click" Text="Direita" Width="93px" />
</form>
</body>
</html>
How could I code this?