Dream of a journey

Journey of Computer Science graduated .NET Developer

Happy Holiday

First of all, I just want to sayMerry *belated* Christmas 2007 and Happy New Year 2008 =)
I had this blog for few months now, and I haven’t been able to put a lot into it lately. But I see that most traffic to my blog views my post about jQuery and ASP.NET. At that time, […]

I came across this article, and it’s really helpful.
What I found is that, basically, to send HTML emails, you’ll need to setup AlternativeView, that is, to specify alternative view for your message.
Next, is to attach and show the embedded image. To attach an image or any file, just use LinkedResource object, and add it to […]

UPDATE: This method indeed worked; it can redirect the extensionless request to ASP.NET ISAPI. However, there’s still a problem with it. If the request includes parameters, for some reason, it changes the url to include ‘default.aspx’ thus breaking the code. For example: http://mysite.com/dostuff/?param=somevalue will be redirected to http://mysite.com/dostuff/default.aspx?param=somevalue. Anyone got any solution to this?
It is […]

Integrating jQuery with ASP.NET

If you might ask, what would I want to use jQuery instead of ASP.NET AJAX (which is heavily integrated into WCSF, especially with its new bundle release), the answer would be “bandwidth” a.k.a performance.
While ASP.NET AJAX handles most asynchronous callback and partial-update rendering, it comes with a trade-off; you couldn’t control the data format exchanged […]