In order to avoid ENTER key in your asp:TextBox you've to add onkeydown event and control it, like this: <asp:TextBox ID="myTextBox" runat="server" onkeydown="return (event.keyCode != 13);"></asp:TextBox>
Etiqueta: delete
SharePoint 2013 + Visual Studio 2012: File «.g.cs» dissapeared
Sometimes, when you're developing a visual web part, the designer file (with .g.cs extension) dissapears in front of your eyes. After finding nothing in the internet, we've just discovered why it is happening: You've to add the "Site URL" property in the Project properties. That's beacuse it is a web part for sharepoint, and Visual …
Sigue leyendo SharePoint 2013 + Visual Studio 2012: File «.g.cs» dissapeared
SalesForce create(), update() y delete() desde Código Servidor
Existen tres funciones básicas que nos permiten interactuar con los registros de datos en SalesForce y sirven para crear, modificar o eliminar datos. Lo primero que debemos tener es una conexión con SalesForce y una instancia del servicio (A través de la clase SforceService). Una vez tengamos esta conexión, podemos utilizar las funciones mencionadas. Para …
Sigue leyendo SalesForce create(), update() y delete() desde Código Servidor