Hi,
There is “Querystring parameter name:” property in tag could web part. You can change it according your need for example to tagname. Then you can also modify
~\CMSWebParts\TaggingCategories\TagCloud.ascx.cs where you can change following line (about 431):
sb.Append("<span><a href=\"" + paramUrl + "\" style=\"font-size:" + pixelSize.ToString() + "px;\" >" + HTMLHelper.HTMLEncode(dr["TagID"].ToString()) + "</a></span>\n");
to:
sb.Append("<span><a href=\"" + paramUrl + "\" style=\"font-size:" + pixelSize.ToString() + "px;\" >" + HTMLHelper.HTMLEncode(dr["TagName"].ToString()) + "</a></span>\n");
In this way the links generated by this web part will be in following format:
http://localhost/40/cmsgetdoc/f22a42a2-4b95-4af4-92a4-12db71fa9dd3/Tag-cloud.aspx?tagname=WXGA
I hope it will help you to achieve your needs.
Best Regards,
Miroslav Remias