You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 29, 2023. It is now read-only.
Add action to your controller with following code:
public ActionResult Thumbs(string tmb){return Connector.GetThumbnail(Request, Response, tmb);}
Set property ThumbnailsUrl in your roots:
ThumbnailsUrl = "Thumbnails/"
Set directrory for store thumbnails. Thumbnails can be stored separately from original directory.
ThumbnailsStorage = new DirectoryInfo(Server.MapPath("~/Files"));
If your not set this property, than thumbnails will be generated "on fly" for every client's request and stored in client browser cache. Be carefull with this option because it can affect pefromance.e.e.