Ok, I was wondering if there is a way to either add a new image size to the admin panel or if it's possible to call the large image and specify the size I'd like? for instance, is it possible to add a width and height to the code below?
Code:
<xsl:value-of select="aspdnsf:LookupEntityImage(EntityID, 'Category', 'medium', 0, '')" disable-output-escaping="yes" />
When I build Wordpress sites, I can add something like this to the functions.php to create a new image size.
Code:
add_image_size( 'testi-thumbnail', 120, 120, true ); // Testimonial Thumbnail
Is this possible with ASP?