User Ian Robinson - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T17:18:01Zhttp://stackoverflow.com/feeds/user/326http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1805779/using-asp-net-mvc-2-features-with-the-spark-view-engine2Using asp.net mvc 2 features with the spark view engineIan Robinson2009-11-26T21:38:02Z2009-11-29T00:23:53Z
<p>I am working with an ASP.NET MVC project which was originally started from the <a href="http://codebetter.com/blogs/karlseguin/archive/2009/04/28/presenting-codebetter-canvas.aspx" rel="nofollow">CodeBetter.Canvas</a> project - and I'm trying to move to ASP.NET MVC 2. I successfully upgraded my project using <a href="http://weblogs.asp.net/leftslipper/archive/2009/10/19/migrating-asp-net-mvc-1-0-applications-to-asp-net-mvc-2.aspx" rel="nofollow">Eilon's upgrade tool</a>, moved to VS2010 (although not yet to .NET 4).</p>
<p>The issue I'm having currently is only occurring when using the spark view engine. Here is the relevant bit of code in my View.spark (strongly typed):</p>
<pre><code>${Html.EditorFor(e => e)}
</code></pre>
<p>The same bit of code <em>works just fine</em> if I use an .aspx view:</p>
<pre><code><%= Html.EditorFor(e => e) %>
</code></pre>
<p>The major point here being "EditorFor" is new in ASP.NET MVC 2 and in my project I can use that helper in an ASPX view but not a Spark view.</p>
<p>I've tried <a href="http://stackoverflow.com/questions/1261576/asp-net-mvc-2-0-prev-1-and-spark/1264289#1264289">upgrading Spark to use MVC 2</a> (as well as MvcContrib and Ninject), thinking maybe it was one of those that was freaking out - but so far no luck - I'm still seeing the same behavior.</p>
<p>Here is the full error message that is thrown from within Spark's BatchCompiler class.</p>
<blockquote>
<p>Dynamic view compilation failed.
(0,0): warning CS1701: Assuming
assembly reference 'System.Web.Mvc,
Version=1.0.0.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35'
matches 'System.Web.Mvc,
Version=2.0.0.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35', you
may need to supply runtime policy
c:\inetpub\wwwroot[myproject]\CodeBetter.Canvas.Web\Views[MyEntity]\View.spark(9,16):
error CS1061:
'System.Web.Mvc.HtmlHelper' does not
contain a definition for 'EditorFor'
and no extension method 'EditorFor'
accepting a first argument of type
'System.Web.Mvc.HtmlHelper' could be
found (are you missing a using
directive or an assembly reference?)</p>
</blockquote>
<p>Here is the Spark related code in my Global.asax:</p>
<pre><code>var settings = new SparkSettings()
.AddNamespace("System")
.AddNamespace("System.Collections.Generic")
.AddNamespace("System.Web.Mvc")
.AddNamespace("System.Web.Mvc.Html")
.AddNamespace("MvcContrib.FluentHtml")
.AddNamespace("CodeBetter.Canvas")
.AddNamespace("CodeBetter.Canvas.Web")
.SetPageBaseType("ApplicationViewPage")
.SetAutomaticEncoding(true);
#if DEBUG
settings.SetDebug(true);
#endif
var viewFactory = new SparkViewFactory(settings);
ViewEngines.Engines.Add(viewFactory);
</code></pre>
<p>Also, I am referencing System.Web.Mvc.Html in my spark view as mentioned <a href="http://stackoverflow.com/questions/1081650/cannot-use-html-actionlink-in-asp-net-mvc-spark-files">in another SO answer</a>.</p>
<pre><code><use namespace="System.Web.Mvc.Html" />
</code></pre>
http://stackoverflow.com/questions/1697188/still-stuck-with-ajax/1697217#16972170Answer by Ian Robinson for still stuck with ajaxIan Robinson2009-11-08T17:18:28Z2009-11-08T17:18:28Z<p>Try this one out, it has the benefit of not being browser dependent.</p>
<pre><code> // Browser-agnostic factory function
_createXMLHttpRequest: function() {
if (window.XMLHttpRequest) {
return new XMLHttpRequest();
} else if (window.ActiveXObject) {
return new ActiveXObject('Microsoft.XMLHTTP')
} else {
_error("Could not create XMLHttpRequest on this browser");
return null;
}
},
</code></pre>
<p>More information:</p>
<ul>
<li><a href="http://ajaxpatterns.org/Cross-Browser%5FComponent" rel="nofollow">http://ajaxpatterns.org/Cross-Browser_Component</a></li>
<li><a href="http://ajaxify.com/run/testAjaxCaller/" rel="nofollow">http://ajaxify.com/run/testAjaxCaller/</a></li>
</ul>
http://stackoverflow.com/questions/1697148/how-to-use-url-routing-in-asp-net-4-0/1697180#16971801Answer by Ian Robinson for how to use url routing in asp.net 4.0Ian Robinson2009-11-08T17:11:30Z2009-11-08T17:11:30Z<p>I suggest starting by reading a blog post by The Gu: <a href="http://weblogs.asp.net/scottgu/archive/2009/10/13/url-routing-with-asp-net-4-web-forms-vs-2010-and-net-4-0-series.aspx" rel="nofollow">URL Routing with ASP.NET 4 Web Forms (VS 2010 and .NET 4.0 Series)</a></p>
<p>He has an introductory discussion with some good examples on the following topics:</p>
<ul>
<li>What is URL Routing?</li>
<li>Mapping URLs using ASP.NET MVC</li>
<li>Mapping URLs using ASP.NET Web Forms</li>
<li>Retrieving URLs within an ASP.NET Web Form</li>
<li>Handling PostBack Scenarios</li>
</ul>
<p>Here is an example of using routing in Web Forms:
<img src="http://weblogs.asp.net/blogs/scottgu/step2%5F5866151D.png" alt="Routing Web Forms Example"></p>
http://stackoverflow.com/questions/1644233/tabinfo-iconfile/1649904#16499040Answer by Ian Robinson for TabInfo IconFileIan Robinson2009-10-30T13:47:05Z2009-10-30T13:47:05Z<p>DotNetNuke.Services.FileSystem.FileController has a method called GetFileById that accepts a File ID and a Portal ID. This returns a type of FileInfo which has both PhysicalPath and RelativePath properties.</p>
http://stackoverflow.com/questions/1060236/cleanest-way-to-control-page-position-after-form-postback0Cleanest way to control page position after form postback?Ian Robinson2009-06-29T20:09:13Z2009-10-25T15:04:28Z
<p>I have a form that when submitted successfully generates new elements on the page describing the successful form submission and providing the user with some "next steps" information.</p>
<p>This success message element is at the top of the page and I'd like to bring the user's scroll position to this point after they submit the form.</p>
<p>I understand there are a variety of implementation options, and everything I can think of feels like a hack. Any clean and efficient suggestions? Best practices?</p>
http://stackoverflow.com/questions/1590280/how-can-i-keep-a-jquery-dialog-on-the-screen/1590379#15903792Answer by Ian Robinson for How can I keep a jQuery dialog on the screen?Ian Robinson2009-10-19T18:43:51Z2009-10-19T18:43:51Z<p>If your goal is to show the user a message and keep them from having to scroll to discover it - which I believe is the case based on your description - you may want to consider using the <a href="http://malsup.com/jquery/block/" rel="nofollow">jQuery BlockUI Plugin</a> to tell the user the error message. Check out the following demos:</p>
<p><a href="http://malsup.com/jquery/block/#demos" rel="nofollow">http://malsup.com/jquery/block/#demos</a></p>
<p>I think the growl functionality may be something you could work with.</p>
<p>The primary benefit here is that the error message would appear in a very consistent place and you would not need to be concerned with the exact location of the "offending" element, but could - at the same time - rest assured that the error message will always be visible to the user.</p>
http://stackoverflow.com/questions/1558742/dotnetnuke-up-and-running-error/1570203#15702031Answer by Ian Robinson for dotnetnuke up and running errorIan Robinson2009-10-15T03:52:27Z2009-10-15T03:52:27Z<p>The main problem here is that you aren't getting any detail about what the error. Any success achieved while troubleshooting this without exposing some more detail (or knowledge of your setup) is going to be pretty close to pure luck.</p>
<p>I would suggest following the instructions that this default error message is giving you and editing the web. config file. The file is named "web.config" and it lives in the root of the website.</p>
<p>Open the file and search for "RemoteOnly", you should see something that says customErrors mode="RemoteOnly". Change the "RemoteOnly" to "Off" and save the file. The next time you browse to the site you should see a more detailed error message. Please share that with us here in the form of an update to your current post or as a new question (which I recommend, as it technically will be a different question).</p>
<p>Also, I recommend making a backup copy of the web.config file first before making any changes.</p>
http://stackoverflow.com/questions/1509693/ive-learnt-jquery-should-i-go-back-and-learn-proper-js/1509698#15096982Answer by Ian Robinson for I've learnt jQuery, should I go back and learn "proper js"?Ian Robinson2009-10-02T14:01:39Z2009-10-02T14:01:39Z<p>Unless you want to make JS a core competency, I think you're good.</p>
http://stackoverflow.com/questions/1302428/what-does-jquery-actually-return/1302443#13024434Answer by Ian Robinson for What does jquery $ actually return?Ian Robinson2009-08-19T20:26:48Z2009-08-19T20:34:23Z<p>From <a href="http://www.devx.com/codemag/Article/40923" rel="nofollow">Rick Strahl's description</a>:</p>
<blockquote>
<p>The jQuery Object: The Wrapped Set:
Selectors return a jQuery object known
as the "wrapped set," which is an
array-like structure that contains all
the selected DOM elements. You can
iterate over the wrapped set like an
array or access individual elements
via the indexer ($(sel)[0] for
example). More importantly, you can
also apply jQuery functions against
all the selected elements.</p>
</blockquote>
<p>About returning nothing:</p>
<blockquote>
<p>Does it always return an array? Does it return null?</p>
</blockquote>
<p>You always get the same thing back, whether or not it has any contents is the question. Typically you can check this by using .val() (e.g. $('.myElem').val())</p>
http://stackoverflow.com/questions/1251605/simple-question-on-dotnetnuke-module-development/1255039#12550394Answer by Ian Robinson for Simple question on DotNetNuke Module developmentIan Robinson2009-08-10T13:56:20Z2009-08-10T13:56:20Z<p>Your user control should already inherit from <code>DotNetNuke.Entities.Modules.PortalModuleBase</code>. If so, you can use the <code>this.UserInfo.UserID</code> property to retrieve the User's ID. This will be much safer than looking at the query string. Remember that the user may not be logged in, and in that case the above would cause a null reference - so be sure to test for null first.</p>
<p>Also, on a somewhat related note, you can use <code>this.UserInfo.IsInRole("RoleName")</code> to test to see if a particular user is in a given role.</p>
http://stackoverflow.com/questions/1247710/sending-the-current-date-via-ajax-to-my-net-handler-how-to-pass-a-safe-date/1247733#12477330Answer by Ian Robinson for Sending the current date via ajax to my .net handler, how to pass a safe date?Ian Robinson2009-08-08T01:45:10Z2009-08-08T01:45:10Z<p>If you're using ASP.NET AJAX already in your project, Dave Ward explains how to use ASP.NET AJAX extensions for this purpose in his blog post <a href="http://encosia.com/2007/12/04/work-smarter-ms-ajaxs-javascript-base-type-extensions/" rel="nofollow">Work smarter: MS AJAX's JavScript type extensions</a>:</p>
<blockquote>
<p>Simplify formatting client side dates
with Date.format If you’ve spent much
time working with dates in JavaScript,
you know what a hassle it can
sometimes be. To greatly ease this,
ASP.NET AJAX extends the JavaScript
Date object with a formatting function
that closely mimics the ToString
formatting paradigm that we’ve been
using for years. Here are a few
examples:</p>
</blockquote>
<pre><code>var today = new Date('12/3/2007');
var shortDate = today.format('d');
// d formats the date as MM/dd/yyyy
// shortDate == '12/03/2007'
var longDate = today.format('D');
// D formats the date as dddd, dd MMMM yyyy
// longDate == 'Monday, 03 December 2007'
var customDate = today.format('MMMM, yyyy');
// Custom format string to format the date as MMMM, yyyy
// customDate == 'December, 2007'
</code></pre>
<blockquote>
<p>Date.format accepts most of the
standard DateTime format strings, such
as d and D. If none of those suit your
needs, Date.format also provides
almost unlimited flexibility via
custom formatting strings. For a full
list of formatting string parameters,
see the <a href="http://msdn.microsoft.com/en-us/library/az4se3k1.aspx" rel="nofollow">Standard DateTime Format
Strings</a> and <a href="http://msdn2.microsoft.com/en-us/library/8kb3ddd4.aspx" rel="nofollow">Custom DateTime Format
Strings</a> reference pages on MSDN.</p>
</blockquote>
http://stackoverflow.com/questions/1246570/how-do-i-get-the-portals-current-login-url-in-dotnetnuke1How do I get the portal's current login URL in DotNetNuke?Ian Robinson2009-08-07T19:30:02Z2009-08-07T19:40:05Z
<p>In the context of a DNN module, what's a good generic way to find out what the URL to the login functionality is?</p>
http://stackoverflow.com/questions/1246570/how-do-i-get-the-portals-current-login-url-in-dotnetnuke/1246587#12465871Answer by Ian Robinson for How do I get the portal's current login URL in DotNetNuke?Ian Robinson2009-08-07T19:33:11Z2009-08-07T19:40:05Z<p>Here is a utility method that gets the login URL:</p>
<p>C#</p>
<pre><code> /// <summary>
/// Gets the login URL for the given portal from the current <paramref name="request"/>.
/// </summary>
/// <param name="portalSettings">The portal settings.</param>
/// <param name="request">The request.</param>
/// <returns>The URL for the login page</returns>
/// <exception cref="ArgumentNullException">if <paramref name="portalSettings"/> or <paramref name="request"/> is null.</exception>
public static string GetLoginUrl(PortalSettings portalSettings, HttpRequest request)
{
if (portalSettings != null && request != null)
{
int tabId = portalSettings.ActiveTab.TabID;
string controlKey = "Login";
string returnUrl = request.RawUrl;
if (returnUrl.IndexOf("?returnurl=", StringComparison.OrdinalIgnoreCase) > -1)
{
returnUrl = returnUrl.Substring(0, returnUrl.IndexOf("?returnurl=", StringComparison.OrdinalIgnoreCase));
}
returnUrl = HttpUtility.UrlEncode(returnUrl);
if (!Null.IsNull(portalSettings.LoginTabId) && string.IsNullOrEmpty(request.QueryString["override"]))
{
// user defined tab
controlKey = string.Empty;
tabId = portalSettings.LoginTabId;
}
else if (!Null.IsNull(portalSettings.HomeTabId))
{
// portal tab
tabId = portalSettings.HomeTabId;
}
// else current tab
return Globals.NavigateURL(tabId, controlKey, new string[] { "returnUrl=" + returnUrl });
}
throw new ArgumentNullException(portalSettings == null ? "portalSettings" : "request");
}
</code></pre>
<p>VB.NET</p>
<pre><code>''' <summary>
''' Gets the login URL for the given portal from the current <paramref name="request"/>.
''' </summary>
''' <param name="portalSettings">The portal settings.</param>
''' <param name="request">The request.</param>
''' <returns>The URL for the login page</returns>
''' <exception cref="ArgumentNullException">if <paramref name="portalSettings"/> or <paramref name="request"/> is null.</exception>
Public Shared Function GetLoginUrl(portalSettings As PortalSettings, request As HttpRequest) As String
If portalSettings <> Nothing AndAlso request <> Nothing Then
Dim tabId As Integer = portalSettings.ActiveTab.TabID
Dim controlKey As String = "Login"
Dim returnUrl As String = request.RawUrl
If returnUrl.IndexOf("?returnurl=", StringComparison.OrdinalIgnoreCase) > -1 Then
returnUrl = returnUrl.Substring(0, returnUrl.IndexOf("?returnurl=", StringComparison.OrdinalIgnoreCase))
End If
returnUrl = HttpUtility.UrlEncode(returnUrl)
If Not Null.IsNull(portalSettings.LoginTabId) AndAlso String.IsNullOrEmpty(request.QueryString("override")) Then
' user defined tab
controlKey = String.Empty
tabId = portalSettings.LoginTabId
ElseIf Not Null.IsNull(portalSettings.HomeTabId) Then
' portal tab
tabId = portalSettings.HomeTabId
End If
' else current tab
Return Globals.NavigateURL(tabId, controlKey, New String() {"returnUrl=" + returnUrl})
End If
Throw New ArgumentNullException(If(portalSettings = Nothing, "portalSettings", "request"))
End Function
</code></pre>
http://stackoverflow.com/questions/1222041/developing-a-dotnetnuke-cms-website/1239651#12396513Answer by Ian Robinson for Developing a DotNetNuke CMS website Ian Robinson2009-08-06T15:23:02Z2009-08-06T15:23:02Z<blockquote>
<p>What are the steps involved in developing a dotnetnuke website?</p>
</blockquote>
<ol>
<li>Pick your version (if you're starting now, pick 5.1.1)</li>
<li>Installation (use Source package locally, Install package everywhere else)</li>
<li>Settings Configuration (performance, security, user info, etc.)</li>
<li>Adding & configuring core/third party modules</li>
<li>Adding & configuring third party skins</li>
<li>Custom Extension (typically module or provider) Development</li>
<li>Custom Skin Development</li>
</ol>
<blockquote>
<p>How different is it from a developers
perspective to develop a dotnetnuke
cms website from a cms website which
was developed from scratch?</p>
</blockquote>
<p>Very. When you're starting with an established CMS you're inheriting solutions to tons and tons of solved problems. In the case of DNN, you have a substantial <strong>framework</strong> at your disposal. The focus will be more on learning and leveraging the existing API/features. If you're starting from scratch you're providing that foundation yourself. Using an established CMS is not necessarily better than the other - it depends on what you're trying to accomplish. If you require fine-grained control over everything and you want a great learning experience, rolling your own may be the best way to go. </p>
<blockquote>
<p>When it comes to the database do you
add tables to the database
incrementally as you develop new
functionality or do you plan
everything in advance and create
tables and stored procedures at once?</p>
</blockquote>
<p>No matter what your project is, I'd suggest doing things as they are needed and not before. I think "doing everything in advance" would be impossible/horrible anyway. The heart of this question is really going to be defining your development process - I don't think this would necessarily be any different than in other projects. I like to define the features I want, organize them based on their relation to each other (which should come first due to dependencies, etc) and start implementing them one at a time and give each one the attention it needs.</p>
http://stackoverflow.com/questions/1198217/dotnetnuke-module-installer/1200098#12000983Answer by Ian Robinson for dotnetnuke module installerIan Robinson2009-07-29T13:04:21Z2009-07-29T13:04:21Z<p>I suggest that <a href="http://nant.sourceforge.net/" rel="nofollow">NAnt</a> be used to automate the packaging process for each module. It takes a little bit of set up and configuration, but if you package modules frequently, over time it saves an incredible amount of effort. It also ensures that you are consistently building the package in the same way every time you package your module.</p>
<p>Steps:</p>
<p>1) Download and extract NAnt to a location on your computer. I recommend using the 0.86 beta 1 build of NAnt.</p>
<p>2) Incorporate NAnt into Visual Studio as an "External Tool"</p>
<p><a href="http://weblogs.asp.net/bsimser/archive/2006/06/06/Simple-NAnt-integration-with-Visual-Studio.aspx" rel="nofollow">Bill Simser instructs</a>:</p>
<blockquote>
<ol>
<li>Create a new External Tool by going to Tools | External Tools</li>
<li>Click Add to add a new tool</li>
<li>Give it a title of "NAnt"</li>
<li>Browse to the location of the NAnt.exe file wherever you have it downloaded to Set the initial directory to $(SolutionDir) (where your .build file resides)</li>
<li>Click on "Use Output Window"</li>
<li>Click OK In the external tools menu</li>
</ol>
</blockquote>
<p>3) Incorporate a build script into your solution</p>
<p>As an example, here is the build file for the Tell A Friend module that I've created. <a href="http://www.engagesoftware.com/Products/Modules/Engage%5FTell-a-Friend.aspx" rel="nofollow">The full source to the module is also available.</a></p>
<p>You'll want to verify that all of the initial properties are valid for your module. For example, you'll definitely want to change the "project.name", "solution.file", and "project.dll" properties. But you may also need to change other properties as well (The references directory is a good candidate, as you may not have structured the module's dependent assemblies in the same way on the file system).</p>
<pre><code><?xml version="1.0" encoding="utf-8" ?>
<project xmlns="http://nant.sf.net/release/0.86-beta1/nant.xsd" name="Engage: Tell A Friend" basedir="." default="package">
<property name="build" value="true" overwrite="false"/>
<property name="bin.directory" value="..\..\bin" overwrite="false"/>
<property name="project.config" value="release"/>
<property name="project.name" value="TellAFriend"/>
<property name="solution.file" value="Engage${project.name}.sln"/>
<property name="references.directory" value="References"/>
<property name="project.dll" value="${bin.directory}\Engage${project.name}.dll"/>
<patternset id="content.fileset">
<include name="**/*.ascx" />
<include name="**/*.aspx" />
<include name="**/*.asmx" />
<include name="**/*.resx" />
<include name="**/*.html" />
<include name="**/*.htm" />
<include name="**/*.css" />
<include name="**/*.jpg" />
<include name="**/*.gif" />
<include name="**/*.png" />
<include name="**/*.pdf" />
<include name="**/*.xml"/>
<include name="**/*.xsd"/>
<exclude name="Licenses/EULA-*.htm"/>
<exclude name="ReleaseNotes_*.htm"/>
<exclude name="??.??.??.txt" />
<exclude name="_ReSharper.*/**"/>
</patternset>
<patternset id="source.fileset">
<include name="**/*.js"/>
<include name="**/*.cs"/>
<include name="**/*.vb"/>
<include name="**/*.sln"/>
<include name="**/*.csproj"/>
<include name="**/*.vbproj"/>
<include name="**/*.build"/>
<include name="**/*.dnn"/>
<include name="**/*.docx"/>
</patternset>
<target name="build" description="Builds the solution" if="${build}">
<exec program="${environment::get-variable('windir')}\Microsoft.NET\Framework\v3.5\msbuild.exe" failonerror="true">
<arg value="${solution.file}" />
<arg value="/p:Configuration=${project.config}" />
<arg value="/p:Platform=&quot;Any CPU&quot;" />
</exec>
</target>
<target name="get-version" depends="build" description="Sets the project.version property to the first three numbers from the version of the main assembly for this module">
<property name="version" value="${assemblyname::get-version(assembly::get-name(assembly::load-from-file(project.dll)))}" />
<property name="project.version" value="${string::substring(version,0,string::last-index-of(version,'.'))}" />
</target>
<target name="package" depends="get-version" description="Creates packages for this module, one for each three licenses and version of DNN (4 and 5)">
<property name="package.directory" value="package"/>
<property name="package.name" value="Resources.zip"/>
<property name="package.license" value="Free"/>
<property name="includeSource" value="false"/>
<call target="setup-package-files"/>
<call target="create-resources-zip"/>
<call target="create-packages"/>
<property name="includeSource" value="true"/>
<call target="add-sources-to-resource-zip"/>
<call target="create-packages"/>
<delete file="${package.directory}\${package.name}" failonerror="false"/>
<delete dir="${package.directory}\temp" failonerror="false"/>
<call target="project-specific-tasks"/>
</target>
<target name="create-resources-zip" description="Creates the Resources.zip file for content (Install package) files">
<mkdir dir="${package.directory}" failonerror="false"/>
<mkdir dir="${package.directory}/temp" failonerror="false" />
<mkdir dir="${package.directory}/temp/resources" failonerror="false" />
<copy todir="${package.directory}/temp/resources" flatten="false">
<fileset>
<patternset refid="content.fileset"/>
<exclude name="obj/**"/>
<exclude name="${package.directory}/**"/>
</fileset>
</copy>
<zip zipfile="${package.directory}/temp/package/${package.name}">
<fileset basedir="${package.directory}/temp/resources">
<include name="**/*"/>
</fileset>
</zip>
</target>
<target name="add-sources-to-resource-zip" description="Adds the files for the Source package to the Resources.zip file">
<copy todir="${package.directory}/temp/resources" flatten="false">
<fileset>
<patternset refid="source.fileset"/>
<exclude name="obj/**"/>
<exclude name="${package.directory}/**"/>
</fileset>
</copy>
<zip zipfile="${package.directory}/temp/package/${package.name}">
<fileset basedir="${package.directory}/temp/resources">
<include name="**/*"/>
</fileset>
</zip>
</target>
<target name="setup-package-files" description="Copies common package files to the temp/package directory, and sets version-dependent attributes in the DNN 5 manifest file">
<property name="releaseNotes.file" value="ReleaseNotes_${project.version}.htm"/>
<property name="license.file" value="EULA-${package.license}.htm"/>
<mkdir dir="${package.directory}/temp/package" failonerror="false"/>
<copy todir="${package.directory}/temp/package" flatten="true">
<fileset>
<include name="${releaseNotes.file}"/>
<include name="??.??.??.txt" />
<include name="ReadMe.txt" />
<include name="**/*.SqlDataProvider"/>
<include name="**/*.4.dnn"/>
<include name="**/*.5.dnn"/>
<include name="Licenses/${license.file}"/>
</fileset>
</copy>
<copy todir="${package.directory}/temp/package/bin" flatten="true">
<fileset>
<include name="${project.dll}"/>
<include name="${references.directory}/*.dll"/>
<exclude name="${references.directory}/DotNetNuke.dll"/>
<exclude name="${references.directory}/DotNetNuke.WebUtility.dll"/>
<exclude name="${references.directory}/Microsoft.ApplicationBlocks.Data.dll"/>
</fileset>
</copy>
<attrib readonly="false">
<fileset basedir="${package.directory}/temp/package">
<include name="**"/>
</fileset>
</attrib>
<xmlpoke file="${package.directory}/temp/package/Engage${project.name}.5.dnn" value="${license.file}" xpath="dotnetnuke/packages/package/license/@src"/>
<xmlpoke file="${package.directory}/temp/package/Engage${project.name}.5.dnn" value="${releaseNotes.file}" xpath="dotnetnuke/packages/package/releaseNotes/@src"/>
<xmlpoke file="${package.directory}/temp/package/Engage${project.name}.5.dnn" value="${project.version}" xpath="dotnetnuke/packages/package/@version"/>
<xmlpoke file="${package.directory}/temp/package/Engage${project.name}.5.dnn" value="${project.version}" xpath="dotnetnuke/packages/package/components/component[@type='Script']/scripts/script[@type='UnInstall']/version"/>
<xmlpoke file="${package.directory}/temp/package/Engage${project.name}.5.dnn" value="${project.version}" xpath="dotnetnuke/packages/package/components/component[@type='Assembly']/assemblies/assembly[version='REPLACED BY NANT']/version"/>
<!--<xmlpoke file="${package.directory}/temp/package/Engage${project.name}.4.dnn" value="${project.version}" xpath="dotnetnuke/folders/folder/version"/>-->
</target>
<target name="create-packages" description="For the given license and type, creates packages for DNN 4 and DNN 5">
<property name="dnn.version" value="4"/>
<call target="zip-package"/>
<property name="dnn.version" value="5"/>
<call target="zip-package"/>
</target>
<target name="zip-package" description="Zips up the files in the temp/package directory, getting the correct manifest file and using the correct naming convention">
<property name="package.type" value="Install"/>
<if test="${includeSource}">
<property name="package.type" value="Source"/>
</if>
<zip zipfile="${package.directory}/${project.name}_${package.license}_${project.version}_${package.type}_${dnn.version}.zip">
<fileset basedir="${package.directory}/temp/package">
<include name="**/*"/>
<exclude name="**/*.4.dnn" if="${dnn.version=='5'}"/>
<exclude name="**/*.5.dnn" if="${dnn.version=='4'}"/>
</fileset>
</zip>
</target>
<target name="combine-enterprise" description="Combines the Install and Source enterprise packages into one .zip file">
<zip zipfile="${package.directory}/${project.name}_${package.license}_${project.version}_${dnn.version}.zip">
<fileset basedir="${package.directory}">
<include name="${project.name}_${package.license}_${project.version}_Install_${dnn.version}.zip"/>
<include name="${project.name}_${package.license}_${project.version}_Source_${dnn.version}.zip"/>
</fileset>
</zip>
<delete file="${package.directory}/${project.name}_${package.license}_${project.version}_Install_${dnn.version}.zip" failonerror="false"/>
<delete file="${package.directory}/${project.name}_${package.license}_${project.version}_Source_${dnn.version}.zip" failonerror="false"/>
</target>
<target name="project-specific-tasks" description="Place tasks specific to the current project in this task">
</target>
</project>
</code></pre>
<p>4) Run the external tool which executes the build script, and verify your package.</p>
<p>Other resources:</p>
<ul>
<li><a href="http://www.engagesoftware.com/Blog/EntryId/162/C-Compiled-DotNetNuke-Module-Template.aspx" rel="nofollow">C# Compiled DotNetNuke Module
Template (includes a NANT build
file)</a></li>
<li><a href="http://weblogs.asp.net/christoc/archive/2007/07/10/packaging-your-dotnetnuke-module-using-nant.aspx" rel="nofollow">Packaging your DotNetNuke module
using NAnt</a></li>
</ul>
http://stackoverflow.com/questions/863757/dotnetnuke-solpartmenu-submenu-alignment/864356#8643562Answer by Ian Robinson for DotNetNuke solpartmenu submenu alignmentIan Robinson2009-05-14T16:25:11Z2009-05-14T16:25:11Z<p>I would recommend trying to set an explicit width on the menu items. I noticed in Chrome it is saying that the width of the sub-menu items is around 1600px - which would be why it is pushed so far over.</p>
<p>Also, I feel like I have to say this, I wouldn't recommend using the SolPartMenu for your DotNetNuke navigation. There are much better alternatives out there. You're going to keep having headaches with the SolPartMenu and from my experience its just not worth it.</p>
<ul>
<li>DNN Menu (Now the core menu) (some <a href="http://www.dotnetnuke.com/LinkClick.aspx?fileticket=9FBFt/1IiX8%3d&tabid=874&mid=2653" rel="nofollow">documentation</a>)</li>
<li><a href="http://www.houseofnuke.com/Projects/HouseMenu/tabid/410/Default.aspx" rel="nofollow">House Menu</a> (free)</li>
<li><a href="http://www.telerik.com/products/aspnet-ajax/dnn.aspx" rel="nofollow">Telerik RadMenu</a> (commercial)</li>
</ul>
http://stackoverflow.com/questions/803294/how-to-transfer-gargantuan-file-from-ms-word-add-in-vba-to-web-server1How to Transfer Gargantuan File from MS Word Add-In (VBA) to Web Server?Ian Robinson2009-04-29T16:53:51Z2009-05-04T22:02:12Z
<h1>Overview</h1>
<p>I have a Microsoft Word Add-In, written in VBA (Visual Basic for Applications), that compresses a document and all of it's related contents (embedded media) into a zip archive. After creating the zip archive it then turns the file into a byte array and posts it to an ASMX web service. This mostly works.</p>
<h1>Issues</h1>
<p>The main issue I have is transferring large files to the web site. I can successfully upload a file that is around 40MB, but not one that is 140MB (timeout/general failure).</p>
<p>A secondary issue is that building the byte array in the VBScript Word Add-In can fail by running out of memory on the client machine if the zip archive is too large.</p>
<h1>Potential Solutions</h1>
<p>I am considering the following options and am looking for feedback on either option or any other suggestions.</p>
<h2>Option One</h2>
<p>Opening a file stream on the client (MS Word VBA) and reading one "chunk" at a time and transmitting to ASMX web service which assembles the "chunks" into a file on the server.</p>
<p>This has the benefit of not adding any additional dependencies or components to the application, I would only be modifying existing functionality. (Fewer dependencies is better as this solution should work in a variety of server environments and be relatively easy to set up.)</p>
<h3>Question:</h3>
<ul>
<li>Are there examples of doing this or any recommended techniques (either on the client in VBA or in the web service in C#/VB.NET)?</li>
</ul>
<h2>Option Two</h2>
<p>I understand WCF may provide a solution to the issue of transferring large files by "chunking" or streaming data. However, I am not very familiar with WCF, and am not sure what exactly it is capable of or if I can communicate with a WCF service from VBA. This has the downside of adding another dependency (.NET 3.0). But if using WCF is definitely a better solution I may not mind taking that dependency.</p>
<h3>Questions:</h3>
<ul>
<li>Does WCF reliably support large file transfers of this nature? If so, what does this involve? Any resources or examples? </li>
<li>Are you able to call a WCF service from VBA? Any examples?</li>
</ul>
http://stackoverflow.com/questions/775045/is-it-worth-the-effort-to-try-and-override-the-default-classes-in-dnn/775310#7753101Answer by Ian Robinson for is it worth the effort to try and override the default classes in DNNIan Robinson2009-04-22T00:49:06Z2009-04-22T00:49:06Z<p>This really depends on your project. If you're developing a commercial product, my recommendation is to learn how to work with the styles so that you have high compatibility with the DotNetNuke core as well as third party extensions (skins & modules).</p>
<p>I would say if you have complete control over the site it may well be worth it to you to follow your own conventions and bypass the DNN selectors altogether.</p>
<p>That approach would be to create skins and containers that define regions with specific class names. You could then define styles for elements within those regions based on what the element actually is rather than what class is applied to it.</p>
<p>You will probably want to clean up or remove the contents of the default.css file as well (\portals_default\default.css).</p>
http://stackoverflow.com/questions/771467/which-one-is-the-the-best-joomla-dotnetnuke-umbraco-drupal-or-dotcms/774288#7742882Answer by Ian Robinson for which one is the the best joomla, DotNetNuke, Umbraco, Drupal or dotcms ?Ian Robinson2009-04-21T19:43:33Z2009-04-21T19:43:33Z<p>It is easy to ask a "Which of these available options is best for the job" question but, especially when dealing with frameworks and content management systems, it's hard to find anyone who can really answer the question. Few people have equal amounts of experience with each of the options.</p>
<p>In that light, I'll contribute my take on how you can address these issues in the DotNetNuke environment, as that is the Web Application Framework/CMS with which I am most familiar.</p>
<p><strong>Role Based Security</strong></p>
<blockquote>
<p>The hard part is we have many students, many classes, many teachers and parents ... too many groups. The basic user group of joomla does not work e.g. register,author,publisher ...</p>
</blockquote>
<p>and</p>
<blockquote>
<p>Website should have sections for Teachers, Administrators, Students, and parents.</p>
<p>Administrators should be able to manage and view all activity done by the Teachers students and parents.</p>
</blockquote>
<p>What you need are custom roles. DotNetNuke has an extensive role-based security mechanism built in that allows you to create custom roles and delegate various abilities to members of those roles (e.g. view a page, edit a page, view a module, edit a module).</p>
<p><strong>Document Management</strong></p>
<blockquote>
<p>Teachers should be able to enter the website and share documents site wide</p>
</blockquote>
<p>There is a core extension (the Documents module) that allows you to manage documents. There are also third party extensions available for document management. Of these, <a href="http://www.bring2mind.net/DocumentExchange/Overview/tabid/176/Default.aspx" rel="nofollow">Document Exchange</a>, stands out as being very feature rich and widely used.</p>
<p><strong>Site Organization / Themes</strong></p>
<blockquote>
<p>High school, Elementary, and Kindergarten all three sites should have a separate theme but should be tied together threw the admin panel.</p>
</blockquote>
<p>Regardless of the platform you choose, you'll have many options as to how you structure this. DotNetNuke allows you to create multiple portals within one application, each portal having it's own domain/users/roles/etc... But, this is probably not what you want.</p>
<p>What you would more likely want, is to have one portal (which has your custom roles and users within it) and establish different areas of your site (high school, elementary, kindergarten) through the use of page-level skins (DotNetNuke skins define layout and look and feel of page).</p>
<p><strong>Third party extensions and custom functionality</strong></p>
<blockquote>
<p>Student Section, Teacher Section,
Parent Section</p>
</blockquote>
<p>Given that you can plug features in to a DotNetNuke site (modules, skins, providers, etc..), you would definitely want to leverage existing features in the community. Relevant examples being the Private Messages module from Ventrian and the aforementioned Document Exchange module from Bring2Mind. There are countless extensions with "social" features (forums, chat, friends, media galleries, etc...) available as well. Some examples are: <a href="http://www.activemodules.com/products/activeforums.aspx" rel="nofollow">Active Forums</a>, <a href="http://www.activemodules.com/products/activesocial.aspx" rel="nofollow">Active Social</a>, <a href="http://www.smart-thinker.com/DNNBlog/tabid/1070/EntryID/45/Default.aspx" rel="nofollow">Smart Social</a>, <a href="http://www.bizmodules.net/Products/UltraMediaGallery5/Overview/tabid/76/Default.aspx" rel="nofollow">Ultra Media Gallery</a>, <a href="http://www.ventrian.com/Products/Modules/SimpleGallery.aspx" rel="nofollow">Ventrian Simple Gallery</a>, etc..</p>
<p><strong>Resources / Approach</strong></p>
<p>The approach that I would recommend is an <em>integration/customization</em> approach. This means that you are typically utilizing third party products and customizing them to fit your needs as appropriate. Most DotNetNuke products are reasonably priced or free and are often sold with source code included. My recommendation is to only integrate products that include the source code so you don't have dependencies on other companies.</p>
<p>Don't be afraid to get your hands dirty. If someone's product gets you 75% of the way there, get the source and customize it as necessary. If you can't find anything suitable, create it yourself or commission development company to create if or you.</p>
<p>This approach relies heavily on research and less so on custom development. The benefit of that is that you are doing a lot of planning work up front and are forced to think through each of your features thoroughly before implementation.</p>
http://stackoverflow.com/questions/10243/how-to-get-png-transparency-working-in-browsers-that-dont-natively-support-it10How to get PNG transparency working in browsers that don't natively support it?Ian Robinson2008-08-13T19:09:24Z2009-04-08T14:31:22Z
<p>Our (beloved) designer keeps creating PNG files with transparent backgrounds for use in our applications. I'd like to make sure that this feature of the PNG works in "older" browsers as well. What's the best solution?</p>
<p><em>edits below</em></p>
<p>@mabwi & @syd - Whether or not I agree about the use of a PNG is not the point. This is a problem that I need to solve!</p>
<p>@Tim Sullivan - IE7.js looks pretty cool, but I don't think I want to introduce all of the other changes an application. I'd like a solution that fixes the PNG issue exclusively. Thanks for the link.</p>
http://stackoverflow.com/questions/691341/dotnetnuke-pros-and-cons-for-community-blogging-site/694621#6946211Answer by Ian Robinson for DotNetNuke Pros and cons for community blogging site.Ian Robinson2009-03-29T13:24:30Z2009-03-29T13:24:30Z<p>Using a web application framework (such as DotNetNuke) has a ton of benefits to help you get up and running faster and do <em>less work</em> when creating custom functionality.</p>
<p>However, you have to realize that you're basically incorporating tons of code into your project that you may not be familiar with. No matter how good the code is and how easy the framework is to learn, there's still going to be a significant learning curve for you and your team.</p>
<p>Your decision making process (if you're still deciding whether or not to use DotNetNuke), should include (in addition to reading, talking and other general investigation):</p>
<ul>
<li>Downloading the application from Codeplex and checking out the source.</li>
<li>Investigating the third party modules that are out there.</li>
<li>Downloading a free module or two that comes with source, and try to reverse engineer the creator's development process. How did she integrate with the framework, what features did she take advantage of, what was written from scratch?</li>
</ul>
<p>One place where DotNetNuke (or any other framework with tons of extensions) available can really shine is taking existing extensions that are available and customize them. If you need to implement a given feature, check out the solutions in the third party extension community first. You can probably find one that gets you a good percentage of the way there and use it as a foundation for your feature.</p>
<p>For example, if you want a photo gallery on your site, you probably don't want to write it from scratch. There are three major photo galleries out there that sell the source code. The core gallery module is free, simple gallery is cheap, and the source for ultra media gallery is available for a reasonable amount compared to writing it yourself. Any of these could give you a good head start in implementing your features.</p>
http://stackoverflow.com/questions/658289/js-path-in-user-control/658841#6588411Answer by Ian Robinson for JS path in User controlIan Robinson2009-03-18T15:42:17Z2009-03-18T17:35:51Z<p>I'd recommend using the <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.clientscriptmanager.registerclientscriptresource.aspx" rel="nofollow"><code>RegisterClientScriptResource</code></a> utility. You can certainly do this in a user control.</p>
<ol><li> Right click on the JavaScript file and click properties. </li>
<li> Set Build Action to Embedded Resource </li>
<li> Modify the code below and add it to your user control. </li>
</ol>
<pre><code>Page.ClientScript.RegisterClientScriptResource(typeof(CurrentTypeHere), "Your.Namespace.Class.Folder.File.js");
</code></pre>
http://stackoverflow.com/questions/649088/how-do-i-format-and-convert-c-code-to-html/651218#6512181Answer by Ian Robinson for How do I format and convert C# code to HTMLIan Robinson2009-03-16T16:45:00Z2009-03-16T16:50:07Z<p>For formatting I am a big fan of <a href="http://google-code-prettify.googlecode.com/svn/trunk/README.html" rel="nofollow">Google Code Javascript code prettifier</a>.</p>
<p>Essentially you could paste your code in the FCK editor and wrap it as follows:</p>
<pre><code><pre class="prettyprint lang-cs">
Code here
</pre>
</code></pre>
<p>The FCK editor should handle the html conversion "<" and ">" to <code>&lt; and &gt;</code> if you paste it in to the "WYSIWYG" portion (not the source view).</p>
http://stackoverflow.com/questions/646538/cms-for-a-personal-website-asp-net-c/647894#6478942Answer by Ian Robinson for CMS for a personal website - ASP.NET/C#Ian Robinson2009-03-15T14:26:07Z2009-03-15T14:26:07Z<p>If you are evaluating DotNetNuke, take a look at version 4.9.2. Install it and start playing around with it yourself and <strong>form your own opinion</strong>. It is very important to consider other's opinions, but in the end you need to decide for yourself, and preferably you reach a decision after actually evaluating the product on your own. </p>
<p>If you're curious what others have actually implemented with DotNetNuke, check out <a href="http://dnnGallery.net" rel="nofollow">dnnGallery</a>.</p>
<blockquote>
<p>I plan to create a community website
aimed at publishing ASP.NET articles,
blogs, forums and video tutorials.</p>
</blockquote>
<p>There are several article management solutions for DotNetNuke that you can investigate further. Two I have had experience using are <a href="http://www.ventrian.com/Products/Modules/NewsArticles.aspx" rel="nofollow">Ventrian's New's Articles</a> and <a href="http://www.engagesoftware.com/Products/Modules/Engage%5FPublish.aspx" rel="nofollow">Engage: Publish</a>. There is a core blog module and a core forum module as well (core meaning that it ships with DotNetNuke). There are also third party solutions such as <a href="http://www.activemodules.com/Products/ActiveForums.aspx" rel="nofollow">Active Forums</a> and often people use the article management modules mentioned above as blogs.</p>
<blockquote>
<p>An editor that lets me post code with
ease</p>
</blockquote>
<p>DotNetNuke uses the provider model for most everything, and the rich text editor is no exception. I believe <a href="http://www.telerik.com" rel="nofollow">Telerik</a> has a rich text editor that you can plug in, but DotNetNuke 4.9.2 ships with the <a href="http://www.fckeditor.net/" rel="nofollow">FCK Editor</a> 2.6.3.</p>
<blockquote>
<p>Open source preferably written in C#</p>
</blockquote>
<p>DotNetNuke is open source and has a very liberal <a href="http://www.dotnetnuke.com/About/LicensingandTrademarks/tabid/776/Default.aspx" rel="nofollow">license</a> that allows you to do most anything with the code. The "core" is written in VB.NET but frequently extensions (even some of the core extensions) are developed using C#.</p>
<blockquote>
<p>Easy to export content if there is a
need to switch CMS</p>
</blockquote>
<p>While this isn't the only way to export data from a DotNetNuke site, DotNetNuke has a templating system that allows you to export at the portal, page, and module level. If you export data at the portal level you get a <em>lot</em> of information (site information, site settings, page structure, page settings, module information, module content, etc...). This could be used to import that information into another system, but would require you as a developer to parse the XML that was exported and store that in your new application.</p>
<blockquote>
<p>Also, in the US, what hosting company
would you recommend to host this site?
Hopefully, it won't cost me a fortune
to maintain it. Should I consider
DotNetNuke as some hosting providers
have DNN installed by default?</p>
</blockquote>
<p>Here are some links for more information on DotNetNuke hosting.</p>
<ul>
<li><a href="http://weblogs.asp.net/christoc/archive/2008/05/27/good-dotnetnuke-hosting-providers.aspx" rel="nofollow">Good DotNetNuke Hosting Providers (Chris Hammond)</a></li>
<li><a href="http://weblogs.asp.net/christoc/archive/2008/09/04/finding-a-dotnetnuke-host.aspx" rel="nofollow">Finding a DotNetNuke Host (Chris Hammond)</a></li>
<li><a href="http://www.mitchelsellers.com/blogs/articletype/articleview/articleid/215/pageid/113.aspx" rel="nofollow">DotNetNuke Hosting Revisited (Mitchel Sellers)</a></li>
</ul>
http://stackoverflow.com/questions/646712/dotnetnuke-3-0-x-on-sqlserver-2005-net-2-0-win2003-possible/646964#6469642Answer by Ian Robinson for DotNetNuke 3.0.x on SQLServer 2005/Net 2.0.Win2003 - possible?Ian Robinson2009-03-14T23:54:22Z2009-03-14T23:59:32Z<p>My feeling is that you shouldn't have any trouble running in the above mentioned environment. But taking a closer look at the error itself will help us to prove that.</p>
<p>If the error is occurring only when you navigate to the Login module, it may be an issue loading the authentication provider. The best way to find out is to look in the DNN Event Log and take a look at the full error message.</p>
<p>Because you can't login to access the Event Log, you should probably just take a look at the row created in the database when you receive the error. The table is called EventLog and there may be a little bit of friction in parsing the error message out, as all of the details are stored in the database in an XML format.</p>
<p>In general, when moving a site from one environment to another there are only a couple of things that you'd need to do:</p>
<ol>
<li>make sure you can connect to the database</li>
<li>set the file system permissions</li>
</ol>
<p>It sounds like you already have database connectivity because you can load the site.</p>
<p>However, you may want to double check (just re-apply) the file system permissions for the root of the website on the machine in question. Make sure the identity of the website (typically ASP.NET Machine Account or Network Service) has 'Modify' permissions on the root website directory. Perhaps the web site can't load a particular assembly due to lack of permissions.</p>
http://stackoverflow.com/questions/644198/dotnetnuke-intermodule-communication/646191#6461912Answer by Ian Robinson for DotNetNuke intermodule communicationIan Robinson2009-03-14T16:23:37Z2009-03-14T16:23:37Z<p>I was just reading up on IMC last night in <a href="http://www.mitchelsellers.com/default.aspx" rel="nofollow">Mitchel Sellers</a> <a href="http://rads.stackoverflow.com/amzn/click/0470171162" rel="nofollow">DotNetNuke Module Programming</a> book.</p>
<p>Here are some of the main takeaways:</p>
<ol>
<li>Only works between modules on the
same page.</li>
<li>AJAX considerations -
probably won't work with partial postbacks </li>
<li>Events raised are sent to
any module that implements
IModuleListner, so you have to be
sure that you're consuming the right
thing.</li>
</ol>
<p>Here is an example of sending information:</p>
<pre><code>if (ModuleCommunication != null)
{
var args = new ModuleCommunicationEventArgs();
args.Sender = "Something";
args.Target = "Something Else";
args.Text = "Something";
args.Type = "Something";
args.Value = new Object();
ModuleCommunication(this, args);
}
</code></pre>
<p>To filter out the noise you'd want to make sure you include some very specific identifying information. It looks like you have plenty of opportunity to do that though when setting up the the EventArgs to be consumed.</p>
http://stackoverflow.com/questions/626006/what-should-i-consider-when-building-a-content-management-system-cms/626168#6261681Answer by Ian Robinson for What should I consider when building a Content Management System (CMS)?Ian Robinson2009-03-09T13:12:26Z2009-03-09T13:19:32Z<p>There s a recent blog post from <a href="http://www.smashingmagazine.com" rel="nofollow">Smashing Magazine</a> that definitely hits all of the key CMS features. If you're looking for a definitive high-level list of CMS characteristics I think this is about as good as it gets.</p>
<p>Of course no CMS hits all 10 of these <em>perfectly</em>, but these are very valuable things to think through whether your picking one or building one from scratch.</p>
<p><a href="http://www.smashingmagazine.com/2009/03/05/10-things-to-consider-when-choosing-the-perfect-cms/" rel="nofollow">Smashing Magazine - 10 Things to Consider When Choosing the Perfect CMS</a> *</p>
<ol>
<li>Core Functionality (page management)</li>
<li>The editor (WYSIWYG editor)</li>
<li>Managing assets (files)</li>
<li>Search (site search)</li>
<li>Customization (presentation, themes, skinning)</li>
<li>User Interaction (extensions, modules)</li>
<li>Roles and permissions</li>
<li>Versioning (tracking changes to content)</li>
<li>Multiple website support (portals)</li>
<li>Multilingual support (localization)</li>
</ol>
<p>I'll also make a point (or agree with the others who've answered similarly) that the main reason to use a web framework/CMS is because you don't want to re-invent the wheel - so you may not want to re-invent the CMS wheel either :)</p>
<p>Note: the * above means that the contents of the parenthesis are mine and not part of the original article.</p>
http://stackoverflow.com/questions/598071/how-is-the-loading-script-on-this-website-implemented/598084#5980842Answer by Ian Robinson for How is the loading script on this website implemented?Ian Robinson2009-02-28T14:40:03Z2009-02-28T14:40:03Z<p>He is using jQuery's <a href="http://docs.jquery.com/Ajax/ajaxStart" rel="nofollow">ajaxStart</a> and <a href="http://docs.jquery.com/Ajax/ajaxStop" rel="nofollow">ajaxStop</a></p>
<pre><code>$("#loading").ajaxStart(function(){
$(this).show();
});
$("#loading").ajaxStop(function(){
$(this).hide();
});
</code></pre>
<p>This basically allows him to show this loading image while any asynchronous call is being made.</p>
http://stackoverflow.com/questions/590501/difference-between-web-site-and-project-in-visual-studio/590533#5905336Answer by Ian Robinson for Difference between 'Web Site' and 'Project' in Visual StudioIan Robinson2009-02-26T13:25:46Z2009-02-26T14:54:00Z<p>1) The 'web site' model was introduced with ASP.NET 2.0, the 'web application' model was the project type of the original .net framework. They both have different uses (see below).</p>
<p>2) It depends on the context. A good example is if you are selling a software product, you may wish to use a 'web application' project because it naturally lends itself to cleanly compiled code.</p>
<p>3) See above, personal preference, maintenance characteristics. An interesting thing that a 'web site' allows you to do that can get you in a lot of trouble is making arbitrary changes to code-behind (typically a *.cs or *.vb) file in notepad while the website is running.</p>
<p>4) The designer.cs file is used to store the auto-generated code. <strong>"This code was generated by a tool."</strong></p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/aa730880%28VS.80%29.aspx#wapp%5Ftopic5" rel="nofollow">MSDN Article describing the differences</a></li>
<li><a href="http://stackoverflow.com/questions/475938/what-is-the-difference-between-web-application-and-website-in-asp-net">Similar stackoverflow question</a></li>
</ul>
http://stackoverflow.com/questions/590602/padding-or-margin-value-in-pixels-as-integer-using-jquery/590618#5906188Answer by Ian Robinson for Padding or margin value in pixels as integer using jQueryIan Robinson2009-02-26T13:48:01Z2009-02-26T14:32:35Z<p>You should be able to use CSS (<a href="http://docs.jquery.com/CSS/css#name" rel="nofollow">http://docs.jquery.com/CSS/css#name</a>). You may have to be more specific such as "padding-left" or "margin-top".</p>
<p>Example:</p>
<p><strong>CSS</strong></p>
<pre><code>a, a:link, a:hover, a:visited, a:active {color:black;margin-top:10px;text-decoration: none;}
</code></pre>
<p><strong>JS</strong></p>
<pre><code>alert($("a").css("margin-top"));
</code></pre>
<p>The result is 10px.</p>
<p>Update:
If you want to get the "integer" value, you can do the following:</p>
<pre><code>alert($("a").css("margin-top").replace("px", ""));
</code></pre>
http://stackoverflow.com/questions/1805779/using-asp-net-mvc-2-features-with-the-spark-view-engine/1813511#1813511Comment by Ian Robinson on Using asp.net mvc 2 features with the spark view engineIan Robinson2009-11-29T01:17:32Z2009-11-29T01:17:32Zand to clarify - I have a view.aspx and a view.spark - to test one or the other I just rename the one I don't want to use to something else. ASPX works, Spark does not - so this would seem to be a valid test to ensure that everything involved is working properly until I use the spark view instead of the aspx view. Thanks for your help and thoughts, btw. It's much appreciated - I've been stumped on this for awhile now.http://stackoverflow.com/questions/1805779/using-asp-net-mvc-2-features-with-the-spark-view-engine/1813511#1813511Comment by Ian Robinson on Using asp.net mvc 2 features with the spark view engineIan Robinson2009-11-29T00:45:54Z2009-11-29T00:45:54ZHere is the full content of my view:
<viewdata model="Entity" />
<use namespace="System.Web.Mvc.Html"/>
<h2>Entity</h2>
<h3>Name</h3>
<h4>${Model.Name}</h4>
${Html.EditorFor(e => e)}
<a href="!{Url.Action<EntityController>(c => c.Index(null))}">Back</a>http://stackoverflow.com/questions/1805779/using-asp-net-mvc-2-features-with-the-spark-view-engine/1813511#1813511Comment by Ian Robinson on Using asp.net mvc 2 features with the spark view engineIan Robinson2009-11-29T00:28:04Z2009-11-29T00:28:04ZYes - I've re-worded the sentence in my question that said "upgraded to the latest version of Spark" to "Upgraded Spark to use MVC 2" to clarify what I meant there. I have recompiled the Spark source with MVC 2 references and incorporated the resultant assemblies into my MVC project and updated its references. No change in error message.
I've also looked at the assemblies being used in my project in Reflector to verify that they are referencing System.Web.Mvc version 2.0.0.0.http://stackoverflow.com/questions/1622682/problems-building-a-dnn-module-using-linq-to-sqlComment by Ian Robinson on Problems building a DNN module using Linq to SQLIan Robinson2009-11-14T18:50:17Z2009-11-14T18:50:17ZDid you make any progress with this?http://stackoverflow.com/questions/1559314/host-dotnetnuke-application-and-databaseComment by Ian Robinson on host dotnetnuke application and databaseIan Robinson2009-10-15T03:48:25Z2009-10-15T03:48:25ZI'm not sure I understand the question. Do you have a web server that you would like to install DNN on via FTP? If so, the answer is not without some sort of remote access. You'll need to have some sort of remote access to the server to do a full installation as you'll have to configure IIS to serve the website and configure the file system permissions in order for DNN to make it through the install process.http://stackoverflow.com/questions/1569889/jquery-move-table-row/1569895#1569895Comment by Ian Robinson on jQuery: Move Table Row?Ian Robinson2009-10-15T03:44:23Z2009-10-15T03:44:23Z"making the rows draggable ... isn't an option"http://stackoverflow.com/questions/1509585/microsoft-report-server-reportviewer-timeout-problemComment by Ian Robinson on Microsoft Report Server - ReportViewer Timeout ProblemIan Robinson2009-10-02T14:04:45Z2009-10-02T14:04:45ZCan you clarify the more than 40/less than 40 statements? 40 what? Also, what is your report doing? How much data is being pulled back? How long does it take to timeout? Have you tried any steps yet?http://stackoverflow.com/questions/1492647/leading-dotnetnuke-news-and-forum-modules/1493758#1493758Comment by Ian Robinson on Leading DotNetNuke news and forum modules?Ian Robinson2009-10-02T04:32:42Z2009-10-02T04:32:42ZOut of curiosity - what were the reasons for building your own news module from scratch? The reason I ask is that this is one of the more established, feature rich, customizable areas in the DNN world, seems like an odd one to write from scratch.http://stackoverflow.com/questions/1492647/leading-dotnetnuke-news-and-forum-modules/1493758#1493758Comment by Ian Robinson on Leading DotNetNuke news and forum modules?Ian Robinson2009-09-30T13:19:21Z2009-09-30T13:19:21ZAgreeing with the above, I'd like to add the following recommendation: Don't use DNN 3. Staying with the latest and greatest (05.01.02 at time of writing) is ideal. If you're using something as old as 3.x you're missing out on a LOT of features, performance enhancements, security fixes, etc...http://stackoverflow.com/questions/1302428/what-does-jquery-actually-return/1302443#1302443Comment by Ian Robinson on What does jquery $ actually return?Ian Robinson2009-08-19T20:34:59Z2009-08-19T20:34:59ZYou're welcome - I also just edited and added the full link to Rick Strahl's article - it's a good read.http://stackoverflow.com/questions/574463/running-ie6-ie7-and-ie8-on-the-same-machine/574465#574465Comment by Ian Robinson on Running IE6, IE7, and IE8 on the same machineIan Robinson2009-08-19T20:23:51Z2009-08-19T20:23:51ZWindows 7 provides another option w/ XP Mode: <a href="http://www.microsoft.com/windows/virtual-pc/download.aspx" rel="nofollow">microsoft.com/windows/virtual-pc/…</a> With the caveat that your processor needs to have special virtualization capabilities (which mine doesn't).http://stackoverflow.com/questions/1267664/ssl-certificate-issueComment by Ian Robinson on ssl certificate issueIan Robinson2009-08-13T12:37:33Z2009-08-13T12:37:33ZWhat version of DotNetNuke are you using? You should have SSL Enabled in the site settings as well as the page level to force it to use the HTTPS.http://stackoverflow.com/questions/1247710/sending-the-current-date-via-ajax-to-my-net-handler-how-to-pass-a-safe-date/1247733#1247733Comment by Ian Robinson on Sending the current date via ajax to my .net handler, how to pass a safe date?Ian Robinson2009-08-10T13:47:49Z2009-08-10T13:47:49ZHow did that end up working out for you?http://stackoverflow.com/questions/1252350/jquery-polaroid-viewerComment by Ian Robinson on jquery Polaroid viewerIan Robinson2009-08-09T21:40:08Z2009-08-09T21:40:08ZClarifying question - do you want the images to have the same behavior, only restricted to one area of the page, instead of the whole entire page?http://stackoverflow.com/questions/1247710/sending-the-current-date-via-ajax-to-my-net-handler-how-to-pass-a-safe-date/1247733#1247733Comment by Ian Robinson on Sending the current date via ajax to my .net handler, how to pass a safe date?Ian Robinson2009-08-08T03:36:28Z2009-08-08T03:36:28Zthe links at the bottom have all kinds of variations. For example: var myCustomDateTime = today.format('G'); // "09/27/2006 14:15:39"