﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - WebGrid Enterprise - webgrid - Images not showing up footer &amp; records not displayed in grid</title><link>http://www.intersoftsolutions.com/Community/WebGrid/webgrid---Images-not-showing-up-footer--records-not-displayed-in-grid/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>webgrid - Images not showing up footer &amp; records not displayed in grid</title><link>http://www.intersoftsolutions.com/Community/WebGrid/webgrid---Images-not-showing-up-footer--records-not-displayed-in-grid/</link><pubDate>Thu, 09 Feb 2012 16:14:36 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt;"&gt;Glad to hear the good news.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt;"&gt;Should you need further assistance or run into any problems regarding our controls, feel free to post it into our community. We would be happy to assist you again.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>webgrid - Images not showing up footer &amp; records not displayed in grid</title><link>http://www.intersoftsolutions.com/Community/WebGrid/webgrid---Images-not-showing-up-footer--records-not-displayed-in-grid/</link><pubDate>Thu, 09 Feb 2012 15:44:00 GMT</pubDate><dc:creator>adajani@najiasystems.com</dc:creator><description>&lt;p&gt;I've solved this problem. &lt;br /&gt;&lt;br /&gt;I had to add the following to my web.config&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;pre&gt;&amp;lt;httpHandlers&amp;gt;            &amp;lt;!-- Intersoft Control Resources--&amp;gt;            &amp;lt;add path="ISRes.axd" verb="GET" type="ISNet.WebUI.WebResourceHandler, ISNet.WebUI, Version=3.0.5000.1, Culture=neutral, PublicKeyToken=b1f2a8511635667a" validate="true"/&amp;gt;
        &amp;lt;/httpHandlers&amp;gt;&lt;br /&gt;&lt;/pre&gt;
&lt;p&gt;So my final result in the web.config looks like this (to deploy too IIS 7)&lt;/p&gt;&lt;pre&gt;&amp;lt;system.web&amp;gt;
        &amp;lt;customErrors defaultRedirect="/Errors/Oops.aspx" mode="On"&amp;gt;
        &amp;lt;/customErrors&amp;gt;
        &amp;lt;compilation debug="true" strict="false" explicit="true" targetFramework="4.0"&amp;gt;
            &amp;lt;assemblies&amp;gt;
                &amp;lt;add assembly="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/&amp;gt;
                &amp;lt;add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/&amp;gt;
            &amp;lt;/assemblies&amp;gt;
        &amp;lt;/compilation&amp;gt;
        &amp;lt;authorization&amp;gt;
            &amp;lt;deny users="?" /&amp;gt;
        &amp;lt;/authorization&amp;gt;
        &amp;lt;authentication mode="Forms"&amp;gt;
            &amp;lt;forms loginUrl="~/Login" timeout="2880" name=".ASPXAUTH" protection="All"/&amp;gt;
        &amp;lt;/authentication&amp;gt;
        &amp;lt;membership&amp;gt;
            &amp;lt;providers&amp;gt;
                &amp;lt;clear/&amp;gt;
                &amp;lt;add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="ApplicationServices" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" applicationName="/"/&amp;gt;
            &amp;lt;/providers&amp;gt;
        &amp;lt;/membership&amp;gt;
        &amp;lt;profile&amp;gt;
            &amp;lt;providers&amp;gt;
                &amp;lt;clear/&amp;gt;
                &amp;lt;add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/"/&amp;gt;
            &amp;lt;/providers&amp;gt;
        &amp;lt;/profile&amp;gt;
        &amp;lt;roleManager enabled="false"&amp;gt;
            &amp;lt;providers&amp;gt;
                &amp;lt;clear/&amp;gt;
                &amp;lt;add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="ApplicationServices" applicationName="/"/&amp;gt;
                &amp;lt;add name="AspNetWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider" applicationName="/"/&amp;gt;
            &amp;lt;/providers&amp;gt;
        &amp;lt;/roleManager&amp;gt;
        &amp;lt;pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"/&amp;gt;
        &amp;lt;httpHandlers&amp;gt;
            &amp;lt;!-- Intersoft Control Resources--&amp;gt;
            &amp;lt;add path="ISRes.axd" verb="GET" type="ISNet.WebUI.WebResourceHandler, ISNet.WebUI, Version=3.0.5000.1, Culture=neutral, PublicKeyToken=b1f2a8511635667a" validate="true"/&amp;gt;
        &amp;lt;/httpHandlers&amp;gt;
        
    &amp;lt;/system.web&amp;gt;
    &amp;lt;system.webServer&amp;gt;
        &amp;lt;modules/&amp;gt;
        &amp;lt;validation validateIntegratedModeConfiguration="false"/&amp;gt;
        &amp;lt;handlers&amp;gt;
            &amp;lt;add name="ISRes.axd_GET" path="ISRes.axd" verb="GET" type="ISNet.WebUI.WebResourceHandler, ISNet.WebUI, Version=3.0.5000.1, Culture=neutral, PublicKeyToken=b1f2a8511635667a" preCondition="integratedMode"/&amp;gt;
        &amp;lt;/handlers&amp;gt;
    &amp;lt;/system.webServer&amp;gt;&lt;/pre&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;
</description></item><item><title>webgrid - Images not showing up footer &amp; records not displayed in grid</title><link>http://www.intersoftsolutions.com/Community/WebGrid/webgrid---Images-not-showing-up-footer--records-not-displayed-in-grid/</link><pubDate>Thu, 09 Feb 2012 14:50:57 GMT</pubDate><dc:creator>adajani@najiasystems.com</dc:creator><description>&lt;p&gt;When I run my project locally or on the server, the images in the footer for the webgrid don't show up. Even though the grid is bound to an object that contains some values, the grid doesn't show the results. Attached is my project sample. Thank you.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description></item></channel></rss>