In the past week I had the opportunity to install the Experience Manager with Session Preview on a completely
DD4T and SDL Tridion driven website. Configuring the Experience Manager can be quite painful. Especially if you don’t know how Session Preview...
In the past week I had the opportunity to install the Experience Manager with Session Preview on a completely
DD4T and SDL Tridion driven website. Configuring the Experience Manager can be quite painful. Especially if you don’t know how Session Preview...
These .NET user controls currently query a Database to retrieve content for the site (example: press releases). The controls will now need to pull content from Tridion using the Content Delivery API. The following is an example of how to create a User...
1 .Create a .Net handler for resizing images
public class ImageResizer : IHttpHandler
{
int _width = 0;
int _height = 0;
public void ProcessRequest(HttpContext context)
{
Bitmap bitOutput;
Bitmap bitInput = GetImage(context);
if (SetHeightWidth...
1 .Create a .Net handler for resizing images
public class ImageResizer : IHttpHandler
{
int _width = 0;
int _height = 0;
public void ProcessRequest(HttpContext context)
{
Bitmap bitOutput;
Bitmap bitInput = GetImage(context);
if (SetHeightWidth...
If you need to populate a field in a Tridion component using advanced parameters or information from other services you can use Custom URLs to get the value of the field, and pass it to the custom page, you can also send that value back, once it has been...
Making one's way up and about SDL Tridion 2011, can be challenging at times. After all, it is a complex and intricate array of systems, interfaces and services backed by a wide range of technologies. At times it certainly feels like one must not fall...
Had an interesting request from a customer recently: Ensure that the product will continue to support different form-factors and whatever the future may bring. How can I answer that with anything else than a very bold " Of course! "? Whatever the future...