コード例 #1
0
    protected void Page_Load(object sender, EventArgs e)
    {
        int id = int.Parse(Request.QueryString["id"]);

        if (t.completarTarea(id))
        {
            Response.Write("Listo");
        }
        else
        {
            Response.Write("Error");
        }
    }