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
15 Sep 2011
This time I found myself in a very interesting challenge. We store user profile and login images in a server folder and users update their images as they need. Sometimes, when you make a release, it is just better to remove everything and paste the new version (just in case some old file remains on [...]
more