DotNetNuke Avatar Call Avatar Zoom

Source: Internet
Author: User
Tags dotnetnuke

public static string Getprofileimage (int userId, int width, int height)
{
Return "~/profilepic.ashx?userid=" + userid.tostring () + "&w=" + width. ToString () + "&h=" + height. ToString ();
}

Participating sites

Http://www.ventrian.com/blog/getting-user-profile-image-paths-in-dotnetnuke

Luckily, a fairly trivial task with DotNetNuke:

String getprofileimage (int userId) {    return Page.resolveurl ("~/profilepic.ashx?userid=" + Userid.tostring ());}  

By default, it looks to is restricted to a maximum width and height of 55px . However, you can pass in parameters to control the width & height.

protected string getprofileimage ( int userId, int width, int height) { Return Page.resolveurl ( "~/profilepic.ashx?userid=" + userid.tostring () &  " &w= "& width. ToString () &  "&h=" & height. ToString ());}          


Http://www.ventrian.com/blog/better-profile-pictures-in-dotnetnuke
<img alt= "Profile Avatar" src = "/profilepic.ashx?userid=[user:userid]&h=64&w=64" width = "Up" height= "Up" >

DotNetNuke Avatar calls Avatar zoom

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.