Search

You searched for the word(s): userid:592118

Matching Posts

  • Re: Weather Module (Oliver Hine)

    Depending on your needs, you might be able to use a simple news feed for your weather. My users do not need to add their own weather module so I use the News Reader module to display weather from the National Weather Service. Here's how: 1. Creath weather.gov.xls file and upload to your portal. Contents are: <?xml version="1.0"?> <xsl:stylesheet version="1.0" xmlns:xsl=" http://www.w3.org/1999/XSL/Transform "> <xsl:output method="html" indent="yes"/> <!-- This is used for www
    Posted to Custom Modules (Forum) by AllegrettoA on 5/3/2006
  • Re: RSS feed module, how to only show top 5 posts?

    You can add this code inside your .xsl file within the <xsl:for-each select="channel/item"> section: <xsl:if test="position() &lt; 6"> <!-- your original html rendering goes here --> </xsl:if>
    Posted to DotNetNuke (Forum) by AllegrettoA on 4/2/2006
  • Re: Wilmington, NC Web Site (www.wilmingtonnc.gov)

    I am curious too since I am also from Wilmington NC.
    Posted to DotNetNuke (Forum) by AllegrettoA on 3/7/2006
  • Re: Dynamically generated images in a module

    David, Thanks for the suggestion. I was looking for a more elegant way to render images. I will have to study your code example...
    Posted to Custom Modules (Forum) by AllegrettoA on 12/22/2005
  • Re: Dynamically generated images in a module

    I had a similar need and decided to develop a web server control. The web server control creates the image with a GUID name then renders an IMG tag. I used this control in my custom DNN module which manipulates properties of the control.. Works well, but server controls are difficult to develop.
    Posted to Custom Modules (Forum) by AllegrettoA on 12/21/2005
  • Re: How do I determine the path to the current folder?

    You can try ResolveUrl("filename.xslt") or MapPath(ResolveUrl("filename.xslt")) depending on if you need the URL or file path.
    Posted to Custom Modules (Forum) by AllegrettoA on 10/11/2005
  • Re: how to use Viewstate variables in DNN

    I have not experienced having a Viewstate variable crash an application. I have read that improper html tags formation could crash IE. On a separate note, you should make sure your Viewstate is unique so that it doesn't collide with a Viewstate variable of the same name from DNN or another module or another instance of your module. For example, you could use Viewstate("mycounter" & ModuleID.ToString).
    Posted to Custom Modules (Forum) by AllegrettoA on 9/30/2005
  • Re: Jscript dont find element

    Another thing to watch out for is ASP.Net can change the ID of a control on your form when rendering it. So, when rendering your javascript at run time, you should use YourControl.ClientID and not the control's name.
    Posted to Custom Modules (Forum) by AllegrettoA on 9/30/2005
  • Re: SharePoint vs DNN comparison

    Basically, DotNetNuke is a neasy-to-use general purpose portal and web application framework. SharePoint is a more complex corporate intranet tool for team and project collaboration, document management, and list management. Main features (IMHO) are: DotNetNuke : Easier to install, use, and administer Runs on any Windows IIS systems Role-based security Forms authentication (and/or Windows authentication with 3rd-party module) Easy navigation More flexible content layout and skinning Easier to install
    Posted to DotNetNuke (Forum) by AllegrettoA on 9/30/2005
  • Re: News Feeds for syndicated modules possible?

    Additional testing indicates the problem is caused by use of the TTT authentication module. Turning off authentication restores syndicatation funtionality. Turning it on breaks syndication. Has anyone experienced this or knows of a workaround? Another strange behavior is that the only way to gain access to RSS is to use impersonation, but then RSS returns the DNN home page instead of XML. Strange.
    Posted to DotNetNuke (Forum) by AllegrettoA on 9/26/2005
Page 1 of 5 (45 items) 1 2 3 4 5 Next >