2 Feb 2012
Well, if you check at Salesforce API documentation and follow their tutorial to connect to SF database and request data, everything should be fine. The API its pretty flexible and solid. But, once you get to the update point you may find some problem…
I connected to Salesforce and requested my CampaignMember, loading it into an [...]
more
11 Jan 2012
If you want to embed your images in an email sent using ASP.Net server instead than using URLs you can use an AlternateView and use the mime standard to embed them:
using System.Net.Mail;
protected void SendBTN_Click(object sender, EventArgs e) {
// Send [...]
more
21 Dec 2011
Mailto is a link “address” we can set to an anchor tag to let the user send an email to someone with just a click. Something like this:
<a href="mailto:someone@someserver.com">Send email</a>
That would show something like this:
Send email
If you click on there, and you have configured in your PC a default email software to handle it, Outlook [...]
more
8 Dec 2011
If you would like to decide when the page will break and the next one will be started when your web page is printed you can use three CSS2.0 styles to set this “jump”.
page-break-before: Sets the element page break behavoir before the element starts.
page-break-inside: Lets you set that the page break behavior has to be [...]
more