Skip to content

Instantly share code, notes, and snippets.

@Tecayehuatl
Last active March 10, 2016 00:31
Show Gist options
  • Save Tecayehuatl/5b7003d36d1c68b98591 to your computer and use it in GitHub Desktop.
Save Tecayehuatl/5b7003d36d1c68b98591 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace WebApplication06102013
{
public partial class WebForm1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
/*Aquí va el código que quieres comprobar solo una vez (por ejemplo)*/
FunctionToBindSomething();
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment