<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>GotCommunityNet</title><link>http://forums.asp.net/131.aspx</link><description>Discuss the GotCommunityNet open source application for ASP.NET 1.x.  &lt;a href="http://www.gotdotnet.com/community/workspaces/default.aspx?id=39959859-68b5-4f5e-bd85-c1a8555e39a9" target="_blank"&gt;GotCommunityNet Home&lt;/a&gt; &lt;a href="http://aspadvice.com/SignUp/list.aspx?l=156&amp;c=25" target="_blank"&gt;Email List&lt;/a&gt;</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Interested in using SSL for logins?  Here's an easy solution</title><link>http://forums.asp.net/thread/842600.aspx</link><pubDate>Mon, 28 Feb 2005 20:34:08 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:842600</guid><dc:creator>bookerdog</dc:creator><author>bookerdog</author><slash:comments>6</slash:comments><comments>http://forums.asp.net/thread/842600.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=131&amp;PostID=842600</wfw:commentRss><description>&lt;i&gt;Hey all, I went looking at the existing system and came up with a fairly easy proceedure to force your GCN site to use SSL for the delicate Login and Register pages.  You could choose to use it for anything by just adding to the list found in the CheckToSecurePage proceedure.
&lt;br /&gt;

&lt;br /&gt;
All code here is in C#.
&lt;br /&gt;

&lt;br /&gt;
First, you need to add a key to your web.config file.  I did this so I could easily turn on and off my SSL.&lt;/i&gt;
&lt;br /&gt;

&lt;br /&gt;
&amp;lt;add key=&amp;quot;forceUseOfSecureHTTP&amp;quot; value=&amp;quot;false&amp;quot; /&amp;gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;i&gt;Add this to the &amp;lt;communityStarterKit&amp;gt;&amp;lt;services&amp;gt; section of web.config
&lt;br /&gt;

&lt;br /&gt;
Like this: &lt;/i&gt;
&lt;br /&gt;

&lt;br /&gt;
&amp;lt;communityStarterKit&amp;gt;
&lt;br /&gt;
       .......
&lt;br /&gt;
        &amp;lt;services&amp;gt;
&lt;br /&gt;
            &amp;lt;add key=&amp;quot;enableServiceTimer&amp;quot; value=&amp;quot;true&amp;quot; /&amp;gt;
&lt;br /&gt;
            &lt;b&gt;&amp;lt;add key=&amp;quot;forceUseOfSecureHTTP&amp;quot; value=&amp;quot;false&amp;quot; /&amp;gt;&lt;/b&gt;
&lt;br /&gt;
        &amp;lt;/services&amp;gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;i&gt;Next I added the following procedure to \Engine\Framework\BaseClasses\CommunityGlobals.cs &lt;/i&gt;
&lt;br /&gt;

&lt;br /&gt;
		public static void CheckToSecurePage(System.Web.HttpContext Context)
&lt;br /&gt;
		{
&lt;br /&gt;
			bool SecurityEnabled = false;
&lt;br /&gt;
			NameValueCollection nvc = (NameValueCollection) ConfigurationSettings.GetConfig(&amp;quot;communityStarterKit/services&amp;quot;);
&lt;br /&gt;
			try //use the try catch in case the key does not exist.
&lt;br /&gt;
			{
&lt;br /&gt;
				SecurityEnabled = bool.Parse(nvc[ &amp;quot;forceUseOfSecureHTTP&amp;quot; ]);
&lt;br /&gt;
			}
&lt;br /&gt;
			catch
&lt;br /&gt;
			{
&lt;br /&gt;
				SecurityEnabled = false;
&lt;br /&gt;
			}
&lt;br /&gt;
			if (SecurityEnabled)
&lt;br /&gt;
			{
&lt;br /&gt;
				string pagename = Context.Request.RawUrl.ToLower();
&lt;br /&gt;
				bool needSecure = false;
&lt;br /&gt;
				if (pagename.IndexOf(&amp;quot;users_editprofile.aspx&amp;quot;) &amp;gt; 0) {needSecure = true;}
&lt;br /&gt;
				if (pagename.IndexOf(&amp;quot;users_login.aspx&amp;quot;) &amp;gt; 0) {needSecure = true;}
&lt;br /&gt;
				if (pagename.IndexOf(&amp;quot;users_register.aspx&amp;quot;) &amp;gt; 0) {needSecure = true;}
&lt;br /&gt;
				if (needSecure &amp;amp;&amp;amp; !Context.Request.IsSecureConnection)
&lt;br /&gt;
				{
&lt;br /&gt;
				{Context.Response.Redirect(&amp;quot;https://&amp;quot; + PrimaryDomain + Context.Request.RawUrl);}
&lt;br /&gt;
				}
&lt;br /&gt;
				else if(!needSecure &amp;amp;&amp;amp; Context.Request.IsSecureConnection)
&lt;br /&gt;
				{
&lt;br /&gt;
				{Context.Response.Redirect(&amp;quot;http://&amp;quot; + PrimaryDomain + Context.Request.RawUrl);}
&lt;br /&gt;
				}
&lt;br /&gt;
			}
&lt;br /&gt;
			else if (Context.Request.IsSecureConnection)
&lt;br /&gt;
			{
&lt;br /&gt;
				Context.Response.Redirect(&amp;quot;http://&amp;quot; + PrimaryDomain + Context.Request.RawUrl);
&lt;br /&gt;
			}
&lt;br /&gt;
		}
&lt;br /&gt;

&lt;br /&gt;
&lt;i&gt;Finally, you go to the default page handler for all requests in the application, communityDefault.aspx in the root directory.  Simply call the above procedure as the first line of the Page_Init procedure. &lt;/i&gt;
&lt;br /&gt;

&lt;br /&gt;
public class communityDefault : System.Web.UI.Page
&lt;br /&gt;
{
&lt;br /&gt;
        void Page_Init(Object s, EventArgs e){
&lt;br /&gt;
			&lt;b&gt;CommunityGlobals.CheckToSecurePage(Context);&lt;/b&gt;</description></item><item><title>User profile history</title><link>http://forums.asp.net/thread/2732517.aspx</link><pubDate>Fri, 07 Nov 2008 23:24:20 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2732517</guid><dc:creator>sasalee21</dc:creator><author>sasalee21</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/2732517.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=131&amp;PostID=2732517</wfw:commentRss><description>&lt;p&gt;i have made my my social networking community website using the tutorial starter kits provided but there was something missing how to show a user that visited your visited your profile on your default page and how to show the number of users that visited your profile and if your profile is visited more than 4-10 times it&amp;#39;s placed in the hall of fame in the fame_users.aspx can someone please help me accomplish this and if you could provide the script that would be nice too please if you need anything to help you accomplish this just send me a message&lt;/p&gt;</description></item><item><title>LDAP Authentication</title><link>http://forums.asp.net/thread/589838.aspx</link><pubDate>Mon, 31 May 2004 05:53:16 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:589838</guid><dc:creator>JohnnyNoir</dc:creator><author>JohnnyNoir</author><slash:comments>3</slash:comments><comments>http://forums.asp.net/thread/589838.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=131&amp;PostID=589838</wfw:commentRss><description>I've been working on adding LDAP authentication to a GCN site I'm developing for work. I work at a university and we have an AD setup. To this end, I used the code provided from Microsoft for an LDAP login and got the example working successfully. 
&lt;br /&gt;

&lt;br /&gt;
(see link http://support.microsoft.com/default.aspx?scid=kb;en;316748)
&lt;br /&gt;

&lt;br /&gt;
I've spent the last week trying to convert/integrate this for use in GCN without much success. The complexity of the login structure of GCN is making my head spin. Has anyone done this already? And more importantly, would you share your code? 
&lt;br /&gt;

&lt;br /&gt;
Thanx for your help,
&lt;br /&gt;

&lt;br /&gt;
Bob &amp;quot;JohnnyNoir&amp;quot; Singer
&lt;br /&gt;

&lt;br /&gt;
   </description></item><item><title>URGENT. Timeout Expired. Error.</title><link>http://forums.asp.net/thread/693806.aspx</link><pubDate>Thu, 16 Sep 2004 06:04:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:693806</guid><dc:creator>euroiranian</dc:creator><author>euroiranian</author><slash:comments>43</slash:comments><comments>http://forums.asp.net/thread/693806.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=131&amp;PostID=693806</wfw:commentRss><description>Hi all,
&lt;br /&gt;

&lt;br /&gt;
I've a articles section with 4500 articles. When I try to read the complete article, I get the next error:
&lt;br /&gt;

&lt;br /&gt;
Server Error in '/International' Application.
&lt;br /&gt;
--------------------------------------------------------------------------------
&lt;br /&gt;

&lt;br /&gt;
Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding. 
&lt;br /&gt;
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 
&lt;br /&gt;

&lt;br /&gt;
Exception Details: System.Data.SqlClient.SqlException: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
&lt;br /&gt;

&lt;br /&gt;
Source Error: 
&lt;br /&gt;

&lt;br /&gt;
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.  
&lt;br /&gt;

&lt;br /&gt;
Stack Trace: 
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
[SqlException: Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding.]
&lt;br /&gt;
   System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream) +723
&lt;br /&gt;
   System.Data.SqlClient.SqlCommand.ExecuteReader() +41
&lt;br /&gt;
   ASPNET.StarterKit.Communities.CommentUtility.GetComments(String username, Int32 contentPageID, Int32 orderBy) +369
&lt;br /&gt;
   ASPNET.StarterKit.Communities.Comments.BindComments() +76
&lt;br /&gt;
   ASPNET.StarterKit.Communities.Comments.OnLoad(EventArgs e) +404
&lt;br /&gt;
   System.Web.UI.Control.LoadRecursive() +35
&lt;br /&gt;
   System.Web.UI.Control.LoadRecursive() +98
&lt;br /&gt;
   System.Web.UI.Control.AddedControl(Control control, Int32 index) +306
&lt;br /&gt;
   System.Web.UI.ControlCollection.Add(Control child) +153
&lt;br /&gt;
   ASPNET.StarterKit.Communities.SkinnedCommunityControl.CreateChildControls() +32
&lt;br /&gt;
   System.Web.UI.Control.EnsureChildControls() +100
&lt;br /&gt;
   System.Web.UI.Control.PreRenderRecursiveInternal() +38
&lt;br /&gt;
   System.Web.UI.Control.PreRenderRecursiveInternal() +125
&lt;br /&gt;
   System.Web.UI.Control.PreRenderRecursiveInternal() +125
&lt;br /&gt;
   System.Web.UI.Control.PreRenderRecursiveInternal() +125
&lt;br /&gt;
   System.Web.UI.Control.PreRenderRecursiveInternal() +125
&lt;br /&gt;
   System.Web.UI.Page.ProcessRequestMain() +1476
&lt;br /&gt;

&lt;br /&gt;
 
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
--------------------------------------------------------------------------------
&lt;br /&gt;
Version Information: Microsoft .NET Framework Version:1.1.4322.573; ASP.NET Version:1.1.4322.573 
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
My Web.Config file is:
&lt;br /&gt;

&lt;br /&gt;
&amp;lt;configuration&amp;gt;
&lt;br /&gt;
    &amp;lt;configSections&amp;gt;
&lt;br /&gt;
        &amp;lt;sectionGroup name=&amp;quot;communityStarterKit&amp;quot;&amp;gt;
&lt;br /&gt;
            &amp;lt;section name=&amp;quot;Isp&amp;quot; type=&amp;quot;ASPNET.StarterKit.Communities.CommunitiesSectionHandler,ASPNET.StarterKit.Communities&amp;quot; /&amp;gt;
&lt;br /&gt;
            &amp;lt;section name=&amp;quot;pagePaths&amp;quot; type=&amp;quot;ASPNET.StarterKit.Communities.CommunitiesSectionHandler,ASPNET.StarterKit.Communities&amp;quot; /&amp;gt;
&lt;br /&gt;
            &amp;lt;section name=&amp;quot;database&amp;quot; type=&amp;quot;ASPNET.StarterKit.Communities.CommunitiesSectionHandler,ASPNET.StarterKit.Communities&amp;quot; /&amp;gt;
&lt;br /&gt;
            &amp;lt;section name=&amp;quot;services&amp;quot; type=&amp;quot;ASPNET.StarterKit.Communities.CommunitiesSectionHandler,ASPNET.StarterKit.Communities&amp;quot; /&amp;gt;
&lt;br /&gt;
        &amp;lt;/sectionGroup&amp;gt;
&lt;br /&gt;
    &amp;lt;/configSections&amp;gt;
&lt;br /&gt;

&lt;br /&gt;
    &amp;lt;communityStarterKit&amp;gt;
&lt;br /&gt;
        &amp;lt;Isp&amp;gt;
&lt;br /&gt;
            &amp;lt;add key=&amp;quot;IspUsername&amp;quot; value=&amp;quot;Usr&amp;quot; /&amp;gt;
&lt;br /&gt;
            &amp;lt;add key=&amp;quot;IspPassword&amp;quot; value=&amp;quot;Psw&amp;quot; /&amp;gt;
&lt;br /&gt;
			&amp;lt;!-- &amp;lt;add key=&amp;quot;TimeZoneAbbreviation&amp;quot; value=&amp;quot;EST&amp;quot; /&amp;gt; --&amp;gt;
&lt;br /&gt;
			&amp;lt;!-- &amp;lt;add key=&amp;quot;GmtTimeOffset&amp;quot; value=&amp;quot;-5&amp;quot; /&amp;gt; --&amp;gt;
&lt;br /&gt;
        &amp;lt;/Isp&amp;gt;
&lt;br /&gt;

&lt;br /&gt;
        &amp;lt;pagePaths&amp;gt;
&lt;br /&gt;
            &amp;lt;add key=&amp;quot;basePage&amp;quot; value=&amp;quot;/communityDefault.aspx&amp;quot; /&amp;gt;
&lt;br /&gt;
            &amp;lt;add key=&amp;quot;baseService&amp;quot; value=&amp;quot;/communityService.asmx&amp;quot; /&amp;gt;
&lt;br /&gt;
        &amp;lt;/pagePaths&amp;gt;
&lt;br /&gt;
        
&lt;br /&gt;
        &amp;lt;database&amp;gt;
&lt;br /&gt;

&lt;br /&gt;
&amp;lt;add key=&amp;quot;connectionString&amp;quot; value=&amp;quot;server=localhost;uid=sa;pwd=secret;database=MyDataBase&amp;quot; /&amp;gt;
&lt;br /&gt;
        &amp;lt;/database&amp;gt;
&lt;br /&gt;

&lt;br /&gt;
        &amp;lt;services&amp;gt;
&lt;br /&gt;
            &amp;lt;add key=&amp;quot;enableServiceTimer&amp;quot; value=&amp;quot;true&amp;quot; /&amp;gt;
&lt;br /&gt;
        &amp;lt;/services&amp;gt;
&lt;br /&gt;

&lt;br /&gt;
     &amp;lt;/communityStarterKit&amp;gt;
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
     &amp;lt;system.web&amp;gt;   
&lt;br /&gt;
        &amp;lt;compilation debug=&amp;quot;false&amp;quot; /&amp;gt;
&lt;br /&gt;
        &amp;lt;customErrors mode=&amp;quot;Off&amp;quot;/&amp;gt;
&lt;br /&gt;
        &amp;lt;httpModules&amp;gt;
&lt;br /&gt;
            &amp;lt;add name=&amp;quot;CommunitiesModule&amp;quot; type=&amp;quot;ASPNET.StarterKit.Communities.CommunitiesModule,ASPNET.StarterKit.Communities&amp;quot; /&amp;gt; 
&lt;br /&gt;
        &amp;lt;/httpModules&amp;gt;
&lt;br /&gt;

&lt;br /&gt;
        &amp;lt;authentication mode=&amp;quot;Forms&amp;quot;&amp;gt;
&lt;br /&gt;
          &amp;lt;forms loginUrl=&amp;quot;Users_Login.aspx&amp;quot; timeout=&amp;quot;60&amp;quot; /&amp;gt;
&lt;br /&gt;
        &amp;lt;/authentication&amp;gt;
&lt;br /&gt;

&lt;br /&gt;
		&amp;lt;pages validateRequest=&amp;quot;false&amp;quot; /&amp;gt;
&lt;br /&gt;
        
&lt;br /&gt;

&lt;br /&gt;
&amp;lt;!-- We need to make sure this is set high enough so that the user doesn't get a timeout error while uploading. --&amp;gt;
&lt;br /&gt;
&amp;lt;!-- The largest file size that ASP.NET will allow for uploads. --&amp;gt;
&lt;br /&gt;
        &amp;lt;httpRuntime maxRequestLength=&amp;quot;1000&amp;quot; executionTimeout=&amp;quot;180&amp;quot; /&amp;gt; 
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
        &amp;lt;httpHandlers&amp;gt;
&lt;br /&gt;
			&amp;lt;add verb=&amp;quot;*&amp;quot; path=&amp;quot;*.jpg&amp;quot; type=&amp;quot;ASPNET.StarterKit.Communities.ImageHandler, ASPNET.StarterKit.Communities&amp;quot; /&amp;gt;
&lt;br /&gt;
			&amp;lt;add verb=&amp;quot;*&amp;quot; path=&amp;quot;*.jpeg&amp;quot; type=&amp;quot;ASPNET.StarterKit.Communities.ImageHandler, ASPNET.StarterKit.Communities&amp;quot; /&amp;gt;
&lt;br /&gt;
			&amp;lt;add verb=&amp;quot;*&amp;quot; path=&amp;quot;*.gif&amp;quot; type=&amp;quot;ASPNET.StarterKit.Communities.ImageHandler, ASPNET.StarterKit.Communities&amp;quot; /&amp;gt;
&lt;br /&gt;
        &amp;lt;/httpHandlers&amp;gt;
&lt;br /&gt;

&lt;br /&gt;
        &amp;lt;webServices&amp;gt;
&lt;br /&gt;
            &amp;lt;protocols&amp;gt;
&lt;br /&gt;
                &amp;lt;add name=&amp;quot;HttpGet&amp;quot;/&amp;gt; 
&lt;br /&gt;
            &amp;lt;/protocols&amp;gt;
&lt;br /&gt;
        &amp;lt;/webServices&amp;gt;
&lt;br /&gt;
    &amp;lt;/system.web&amp;gt;
&lt;br /&gt;
&amp;lt;/configuration&amp;gt;
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
I hope some help. Thanks you all in advance.</description></item><item><title>Newsletter to Members</title><link>http://forums.asp.net/thread/858022.aspx</link><pubDate>Tue, 15 Mar 2005 10:14:33 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:858022</guid><dc:creator>TimParsons</dc:creator><author>TimParsons</author><slash:comments>2</slash:comments><comments>http://forums.asp.net/thread/858022.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=131&amp;PostID=858022</wfw:commentRss><description>Hi all, and thanks for your help in advance.
&lt;br /&gt;

&lt;br /&gt;
GCN is working well for our organization, but I am in need of a little tweaking.  Has someone written the code to modify the way a newsletter is sent out?  Presently, by sending a newsletter out, it goes to all registered members.  I am in need of sending a newsletter out to a different, custom role, like for example community-moderators.  My grand plan to learn C# and do this myself keeps getting a little sidetracked, any information would be very helpful.
&lt;br /&gt;

&lt;br /&gt;
Tim Parsons</description></item><item><title>IIS Remoting is breaking my back -- SOS -- Help -- Man over board</title><link>http://forums.asp.net/thread/1933492.aspx</link><pubDate>Sat, 29 Sep 2007 21:48:44 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1933492</guid><dc:creator>erikkl2000</dc:creator><author>erikkl2000</author><slash:comments>1</slash:comments><comments>http://forums.asp.net/thread/1933492.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=131&amp;PostID=1933492</wfw:commentRss><description>&lt;p&gt;I have worked this a million different ways and i can not seem to get this correct.&lt;/p&gt;&lt;p&gt;I have a simple remote object that returns a &amp;quot;Hello Wold String&amp;quot;.&lt;/p&gt;&lt;p&gt;I have a simple server that host the object.&lt;/p&gt;&lt;p&gt;Now this is where i stop before even making a client so that i can test it and i keep getting this dam error.&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;u&gt;&lt;b&gt;System.Runtime.Remoting.RemotingException: Requested Service not found&lt;/b&gt;&lt;/u&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Here is the remote object:&lt;/p&gt;&lt;p&gt;using System;&lt;br /&gt;using System.Collections.Generic;&lt;br /&gt;using System.Text;&lt;br /&gt;&lt;br /&gt;namespace ServiceObject&lt;br /&gt;{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; public class TheRemoteObject : MarshalByRefObject&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public TheRemoteObject()&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public string ReturnHello() { return &amp;quot;Hello World&amp;quot;; }&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;}&lt;br /&gt;-------------------------------------------&lt;/p&gt;&lt;p&gt;&amp;nbsp;Here is the global.asax:&lt;/p&gt;&lt;p&gt;&amp;lt;%@ Application Language=&amp;quot;C#&amp;quot; %&amp;gt;&lt;br /&gt;&amp;lt;%@ Import Namespace=&amp;quot;System.Runtime.Remoting&amp;quot; %&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;script RunAt=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; void Application_Start(object sender, EventArgs e)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RemotingConfiguration.Configure(Server.MapPath(&amp;quot;/Web.Config&amp;quot;), false);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;&lt;p&gt;///rest removed for clarity&lt;/p&gt;&lt;p&gt;..&lt;/p&gt;&lt;p&gt;&amp;lt;configuration&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;appSettings/&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;system.runtime.remoting&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;application&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;service&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;wellknown mode=&amp;quot;SingleCall&amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; type=&amp;quot;ServiceObject.TheRemoteObject, ServiceObject&amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; objectUri=&amp;quot;TheRemoteObject.soap&amp;quot; /&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/service&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;channels&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;channel ref=&amp;quot;http&amp;quot;/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;serverProviders&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;formatter ref=&amp;quot;binary&amp;quot; /&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/serverProviders&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/channels&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/application&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/system.runtime.remoting&amp;gt;&lt;br /&gt;&amp;lt;/configuration&amp;gt;&lt;/p&gt;&lt;p&gt;---------------&lt;br /&gt;Now i have placed the remote object and the server into a vDir under wwwRoot&lt;/p&gt;&lt;p&gt;Here is what i type in the address bar:&amp;nbsp;&lt;/p&gt;&lt;p&gt;http://localhost/ServiceServer/TheRemoteObject.soap &lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;and here is the response:&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;b&gt;System.Runtime.Remoting.RemotingException: Requested Service not found&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description></item><item><title>How to retrieve values from gridview</title><link>http://forums.asp.net/thread/1772768.aspx</link><pubDate>Tue, 26 Jun 2007 10:07:23 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1772768</guid><dc:creator>rojiin</dc:creator><author>rojiin</author><slash:comments>1</slash:comments><comments>http://forums.asp.net/thread/1772768.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=131&amp;PostID=1772768</wfw:commentRss><description>While selecting a particular row in a gridview i want to retrieve those values to a textbox in the next aspx page.In my project i want to display all values in a gridview and after that if i selecting a particular employee i wanted his entire details to be displayed in corresponding textboxes in next aspx page.how can i able to do this.can anybody help me&amp;nbsp; to sort this problem.</description></item><item><title>Time Tracker and Issue Tracker</title><link>http://forums.asp.net/thread/519585.aspx</link><pubDate>Thu, 25 Mar 2004 21:01:44 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:519585</guid><dc:creator>Sedgewick</dc:creator><author>Sedgewick</author><slash:comments>3</slash:comments><comments>http://forums.asp.net/thread/519585.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=131&amp;PostID=519585</wfw:commentRss><description>Anyone given some thought regarding integrating time tracker and issue tracker?
&lt;br /&gt;

&lt;br /&gt;
I have some mild interest</description></item><item><title>VS2005 GCN 1.1 Converted with Web Application Project</title><link>http://forums.asp.net/thread/1537866.aspx</link><pubDate>Thu, 18 Jan 2007 13:05:48 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1537866</guid><dc:creator>agravina</dc:creator><author>agravina</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1537866.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=131&amp;PostID=1537866</wfw:commentRss><description>I have converted GCN 1.1 (VS2003) to VS2005 using the new Web Application Project. They provide an import capability and it seamlessly converted the VS2003 project.</description></item><item><title>OmniPortal running on ASP.NET 2.0</title><link>http://forums.asp.net/thread/945597.aspx</link><pubDate>Fri, 03 Jun 2005 15:02:02 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:945597</guid><dc:creator>nberardi</dc:creator><author>nberardi</author><slash:comments>5</slash:comments><comments>http://forums.asp.net/thread/945597.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=131&amp;PostID=945597</wfw:commentRss><description>OmniPortal is now running on ASP.NET 2.0.&amp;nbsp; I have incorporated
Master pages, and boy was that a chore figuring out how they are
actually constructed and then duplicating that.&amp;nbsp; However it is
done and the code is running splendidly on ASP.NET 2.0.&amp;nbsp; The next
job is to include some of the cool new features of ASP.NET such as
WebParts and Membership Roles.&amp;nbsp; If interested let me know and I
will tell you how you can get a copy.&lt;br&gt;
&lt;br&gt;
Nick&lt;br&gt;
&lt;br&gt;</description></item><item><title>GCN_ SQLServer 2005</title><link>http://forums.asp.net/thread/1258445.aspx</link><pubDate>Sat, 15 Apr 2006 07:22:16 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1258445</guid><dc:creator>Thomas Stone</dc:creator><author>Thomas Stone</author><slash:comments>1</slash:comments><comments>http://forums.asp.net/thread/1258445.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=131&amp;PostID=1258445</wfw:commentRss><description>&lt;p&gt;What is the bet way to convert the database from 2000 to 2005? Has anybody tried it yet? Does it work problemless?&lt;/p&gt;
&lt;p&gt;Reagrds&lt;/p&gt;</description></item><item><title>Any news for GCN</title><link>http://forums.asp.net/thread/1168768.aspx</link><pubDate>Sun, 15 Jan 2006 12:19:11 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1168768</guid><dc:creator>para7</dc:creator><author>para7</author><slash:comments>2</slash:comments><comments>http://forums.asp.net/thread/1168768.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=131&amp;PostID=1168768</wfw:commentRss><description>&lt;p&gt;Are anyone planning on taking GCN further, or is the development more or less stopping here?&lt;/p&gt;
&lt;p&gt;If it is, then I would prefer to find an alternative&amp;nbsp;portal system. &lt;/p&gt;
&lt;p&gt;Can anyone suggest anything else, where you do not have to upload a new folder system for each new site/community? &lt;/p&gt;
&lt;p&gt;At least a portal where you from a hosting provider can just point to the root and then the protal handles the rest?&lt;/p&gt;
&lt;p&gt;Any ideas are welcome...&lt;/p&gt;</description></item><item><title>Module Developers Guide Problem</title><link>http://forums.asp.net/thread/1139829.aspx</link><pubDate>Mon, 12 Dec 2005 23:14:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1139829</guid><dc:creator>cbeasley</dc:creator><author>cbeasley</author><slash:comments>1</slash:comments><comments>http://forums.asp.net/thread/1139829.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=131&amp;PostID=1139829</wfw:commentRss><description>&lt;p&gt;Dear Forum Members,&lt;/p&gt;
&lt;p&gt;I have version 4.0.1 installed with source.&amp;nbsp; I have opened the dotnetnuke VS.NET solution file.&amp;nbsp; Now I am attempting to follow the instuctions for "Configuring Your Visual Studio.NET Project" under the Module Developers Guide.&amp;nbsp; Step 5 in the process reads:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;5. In the BuildSupport project inthe &amp;lt;approot&amp;gt;\Solutions\DotNetNuke.DesktopModules\BuildSupport\ directory add a reference to your project.&amp;nbsp; By adding the reference to the BuildSupport project will take the references from your solution to be built within the mail DotNetNuke bin directory.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;However....&amp;nbsp; In the &amp;lt;approot&amp;gt; folder of my package there is no such Solutions sub directory.&amp;nbsp; Can anyone please tell me 1) if this process has changed for this version and 2) How to I get the information I need to maintain the standard module setup&lt;/p&gt;
&lt;p&gt;Also... any information regarding an individual/team that would be interested in providing fee-based commercial support for a DotNetNuke installation would be much appreciated.&lt;/p&gt;
&lt;p&gt;Sincerely,&lt;/p&gt;
&lt;p&gt;Charles A Beasley&lt;/p&gt;</description></item><item><title>CSK 1.1 problem</title><link>http://forums.asp.net/thread/1125215.aspx</link><pubDate>Mon, 28 Nov 2005 09:53:28 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1125215</guid><dc:creator>nixor</dc:creator><author>nixor</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1125215.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=131&amp;PostID=1125215</wfw:commentRss><description>Hi, I've a problem with my on line portal (created with CSK)&lt;BR&gt;&lt;BR&gt;I've seen that isn't possible to see the images... Why this problem?? few days ago the images were right...&lt;BR&gt;&lt;BR&gt;Thanks</description></item><item><title>need help in getting images to work</title><link>http://forums.asp.net/thread/516142.aspx</link><pubDate>Tue, 23 Mar 2004 16:21:35 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:516142</guid><dc:creator>swein</dc:creator><author>swein</author><slash:comments>4</slash:comments><comments>http://forums.asp.net/thread/516142.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=131&amp;PostID=516142</wfw:commentRss><description>uploaded images to version 1.1 do not get displayed.
&lt;br /&gt;

&lt;br /&gt;
I've been trying to get this to work for the past few days, without any luck.
&lt;br /&gt;

&lt;br /&gt;
Here are some details...
&lt;br /&gt;
if an image file is placed on the filesystem then it shows up fine.
&lt;br /&gt;
but if I go to the Admin, edit images, I am able to upload images, but they do not display.
&lt;br /&gt;
more specifically, if I upload file say a.gif, the upload works correctly but the thumbnail image is that red X.
&lt;br /&gt;
if I click on the thumbnail the site requests the following URL http://prague-spring.org/a.gif, and I get a 404 response.
&lt;br /&gt;

&lt;br /&gt;
I tried to do some debugging on my local web server by setting breakpoints in ImageHandler.cs and DisplayImage.cs but the breakpoints were never activated.
&lt;br /&gt;

&lt;br /&gt;
my Web.config looks like this
&lt;br /&gt;
&amp;lt;configuration&amp;gt;
&lt;br /&gt;
    &amp;lt;configSections&amp;gt;
&lt;br /&gt;
        &amp;lt;sectionGroup name=&amp;quot;communityStarterKit&amp;quot;&amp;gt;
&lt;br /&gt;
            &amp;lt;section name=&amp;quot;Isp&amp;quot; type=&amp;quot;ASPNET.StarterKit.Communities.CommunitiesSectionHandler,ASPNET.StarterKit.Communities&amp;quot; /&amp;gt;
&lt;br /&gt;
            &amp;lt;section name=&amp;quot;pagePaths&amp;quot; type=&amp;quot;ASPNET.StarterKit.Communities.CommunitiesSectionHandler,ASPNET.StarterKit.Communities&amp;quot; /&amp;gt;
&lt;br /&gt;
            &amp;lt;section name=&amp;quot;database&amp;quot; type=&amp;quot;ASPNET.StarterKit.Communities.CommunitiesSectionHandler,ASPNET.StarterKit.Communities&amp;quot; /&amp;gt;
&lt;br /&gt;
            &amp;lt;section name=&amp;quot;services&amp;quot; type=&amp;quot;ASPNET.StarterKit.Communities.CommunitiesSectionHandler,ASPNET.StarterKit.Communities&amp;quot; /&amp;gt;
&lt;br /&gt;
        &amp;lt;/sectionGroup&amp;gt;
&lt;br /&gt;
    &amp;lt;/configSections&amp;gt;
&lt;br /&gt;
    &amp;lt;communityStarterKit&amp;gt;
&lt;br /&gt;
        &amp;lt;Isp&amp;gt;
&lt;br /&gt;
            &amp;lt;add key=&amp;quot;IspUsername&amp;quot; value=&amp;quot;xxxxxx&amp;quot; /&amp;gt;
&lt;br /&gt;
            &amp;lt;add key=&amp;quot;IspPassword&amp;quot; value=&amp;quot;xxxxxxxx&amp;quot; /&amp;gt;
&lt;br /&gt;
			&amp;lt;add key=&amp;quot;TimeZoneAbbreviation&amp;quot; value=&amp;quot;EST&amp;quot; /&amp;gt;
&lt;br /&gt;
			&amp;lt;add key=&amp;quot;GmtTimeOffset&amp;quot; value=&amp;quot;-5&amp;quot; /&amp;gt;
&lt;br /&gt;
        &amp;lt;/Isp&amp;gt;
&lt;br /&gt;
        &amp;lt;pagePaths&amp;gt;
&lt;br /&gt;
            &amp;lt;add key=&amp;quot;basePage&amp;quot; value=&amp;quot;/communityDefault.aspx&amp;quot; /&amp;gt;
&lt;br /&gt;
            &amp;lt;add key=&amp;quot;baseService&amp;quot; value=&amp;quot;/communityService.asmx&amp;quot; /&amp;gt;
&lt;br /&gt;
        &amp;lt;/pagePaths&amp;gt;
&lt;br /&gt;
        &amp;lt;database&amp;gt;
&lt;br /&gt;
 			&amp;lt;add key=&amp;quot;connectionString&amp;quot; value=&amp;quot;xxxxxxxxxxxxxxxxxxxxxx&amp;quot; /&amp;gt; 
&lt;br /&gt;
        &amp;lt;/database&amp;gt;
&lt;br /&gt;
        &amp;lt;services&amp;gt;
&lt;br /&gt;
            &amp;lt;add key=&amp;quot;enableServiceTimer&amp;quot; value=&amp;quot;true&amp;quot; /&amp;gt;
&lt;br /&gt;
        &amp;lt;/services&amp;gt;
&lt;br /&gt;
     &amp;lt;/communityStarterKit&amp;gt;
&lt;br /&gt;
     &amp;lt;system.web&amp;gt;   
&lt;br /&gt;
		&amp;lt;customErrors mode=&amp;quot;Off&amp;quot;/&amp;gt;
&lt;br /&gt;
        &amp;lt;httpModules&amp;gt;
&lt;br /&gt;
            &amp;lt;add name=&amp;quot;CommunitiesModule&amp;quot; type=&amp;quot;ASPNET.StarterKit.Communities.CommunitiesModule,ASPNET.StarterKit.Communities&amp;quot; /&amp;gt; 
&lt;br /&gt;
        &amp;lt;/httpModules&amp;gt;
&lt;br /&gt;
        &amp;lt;authentication mode=&amp;quot;Forms&amp;quot;&amp;gt;
&lt;br /&gt;
          &amp;lt;forms loginUrl=&amp;quot;Users_Login.aspx&amp;quot;/&amp;gt;
&lt;br /&gt;
        &amp;lt;/authentication&amp;gt;
&lt;br /&gt;
		&amp;lt;pages validateRequest=&amp;quot;false&amp;quot; /&amp;gt;
&lt;br /&gt;
        &amp;lt;httpRuntime maxRequestLength=&amp;quot;1000&amp;quot; /&amp;gt; 
&lt;br /&gt;
        &amp;lt;httpHandlers&amp;gt;
&lt;br /&gt;
			&amp;lt;add verb=&amp;quot;*&amp;quot; path=&amp;quot;*.jpg&amp;quot; type=&amp;quot;ASPNET.StarterKit.Communities.ImageHandler, ASPNET.StarterKit.Communities&amp;quot; /&amp;gt;
&lt;br /&gt;
			&amp;lt;add verb=&amp;quot;*&amp;quot; path=&amp;quot;*.jpeg&amp;quot; type=&amp;quot;ASPNET.StarterKit.Communities.ImageHandler, ASPNET.StarterKit.Communities&amp;quot; /&amp;gt;
&lt;br /&gt;
			&amp;lt;add verb=&amp;quot;*&amp;quot; path=&amp;quot;*.gif&amp;quot; type=&amp;quot;ASPNET.StarterKit.Communities.ImageHandler, ASPNET.StarterKit.Communities&amp;quot; /&amp;gt;
&lt;br /&gt;
        &amp;lt;/httpHandlers&amp;gt;
&lt;br /&gt;
        &amp;lt;webServices&amp;gt;
&lt;br /&gt;
            &amp;lt;protocols&amp;gt;
&lt;br /&gt;
                &amp;lt;add name=&amp;quot;HttpGet&amp;quot;/&amp;gt; 
&lt;br /&gt;
            &amp;lt;/protocols&amp;gt;
&lt;br /&gt;
        &amp;lt;/webServices&amp;gt;
&lt;br /&gt;
    &amp;lt;/system.web&amp;gt;
&lt;br /&gt;
&amp;lt;/configuration&amp;gt;</description></item><item><title>Link module: enhancement suggestion</title><link>http://forums.asp.net/thread/700404.aspx</link><pubDate>Thu, 23 Sep 2004 09:59:11 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:700404</guid><dc:creator>oetievant</dc:creator><author>oetievant</author><slash:comments>1</slash:comments><comments>http://forums.asp.net/thread/700404.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=131&amp;PostID=700404</wfw:commentRss><description>Hello, 
&lt;br /&gt;

&lt;br /&gt;
I found out a quite anoying issue about the link module.
&lt;br /&gt;

&lt;br /&gt;
If you choose &amp;quot;open in new window&amp;quot; for the links, you'll see that the whole page is posted back to the server, ans then the new window opens.
&lt;br /&gt;

&lt;br /&gt;
This causes problems, especially if using an IFrame in the caller, as it will be refreshed, and you may loose the transaction you are in, inside this IFrame.
&lt;br /&gt;

&lt;br /&gt;
You can see what I mean at http://www.ladycaronline.de/de/home/default.aspx?tabid=33
&lt;br /&gt;
In this page, there is an insurance premium calculator in an Irame, and some links to FAQs subject at the bottom of the page. When I was using the &amp;quot;link&amp;quot; module, I would loose my premium claculation whenever selecting a link: bad, isn't it?
&lt;br /&gt;

&lt;br /&gt;
I did a quick an dirty hack, which I think should be intergrated in the link module.
&lt;br /&gt;
There is ofcourse room for improvement, but that's a start.
&lt;br /&gt;
This hack is for the &amp;quot;dropdownlist&amp;quot; display type:
&lt;br /&gt;

&lt;br /&gt;
&amp;lt;SCRIPT language=javascript&amp;gt;
&lt;br /&gt;
function HandleFAQChange()
&lt;br /&gt;
{
&lt;br /&gt;
	targetUrl = &amp;quot;/DE/Home/Default.aspx?tabId=&amp;quot;;
&lt;br /&gt;

&lt;br /&gt;
	selectedFaqIdx = document.all[&amp;quot;FAQSelectList&amp;quot;].selectedIndex;
&lt;br /&gt;
	selectedFaqId = document.all[&amp;quot;FAQSelectList&amp;quot;].options[selectedFaqIdx].value;
&lt;br /&gt;
	
&lt;br /&gt;
	if (selectedFaqId != &amp;quot;&amp;quot;)
&lt;br /&gt;
		document.all[&amp;quot;FAQGoLink&amp;quot;].href = encodeURI(targetUrl + selectedFaqId);	
&lt;br /&gt;
	else
&lt;br /&gt;
		document.all[&amp;quot;FAQGoLink&amp;quot;].removeAttribute(&amp;quot;href&amp;quot;,&amp;quot;false&amp;quot;);
&lt;br /&gt;
}
&lt;br /&gt;
&amp;lt;/SCRIPT&amp;gt;
&lt;br /&gt;

&lt;br /&gt;
&amp;lt;SSELECT class=NormalTextBox style=&amp;quot;WIDTH: 500px&amp;quot; onchange=HandleFAQChange() 
&lt;br /&gt;
name=FAQSelectList&amp;gt; 
&lt;br /&gt;
    &amp;lt;OPTION value=&amp;quot;&amp;quot; selected&amp;gt;Please select text&amp;lt;/OPTION&amp;gt; 
&lt;br /&gt;
    &amp;lt;OPTION value=TabId1&amp;gt;Link1&amp;lt;/OPTION&amp;gt; 
&lt;br /&gt;
    ...
&lt;br /&gt;
    &amp;lt;OPTION value=TabIdN&amp;gt;Linkn&amp;lt;/OPTION&amp;gt; 
&lt;br /&gt;
&amp;lt;/SELECT&amp;gt; 
&lt;br /&gt;
&amp;amp;nbsp; 
&lt;br /&gt;
&amp;lt;A class=CommandButton target=_blank name=FAQGoLink&amp;gt;Go&amp;lt;/A&amp;gt; 
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
</description></item><item><title>Exception Details: System.ArgumentException: Column 'community_name' does not belong to table Table.</title><link>http://forums.asp.net/thread/363589.aspx</link><pubDate>Sat, 11 Oct 2003 13:06:26 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:363589</guid><dc:creator>kkw</dc:creator><author>kkw</author><slash:comments>2</slash:comments><comments>http://forums.asp.net/thread/363589.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=131&amp;PostID=363589</wfw:commentRss><description>After I installed the GCN followed the instruction of the documentation, I got this error when browsing the homepage. Any idea?
&lt;br /&gt;
&lt;b&gt;
&lt;br /&gt;
Server Error in '/CSKdotnet' Application.
&lt;br /&gt;
--------------------------------------------------------------------------------
&lt;br /&gt;

&lt;br /&gt;
Column 'community_name' does not belong to table Table. 
&lt;br /&gt;
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 
&lt;br /&gt;

&lt;br /&gt;
Exception Details: System.ArgumentException: Column 'community_name' does not belong to table Table.
&lt;br /&gt;

&lt;br /&gt;
Source Error: 
&lt;br /&gt;

&lt;br /&gt;
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.  
&lt;br /&gt;

&lt;br /&gt;
Stack Trace: 
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
[ArgumentException: Column 'community_name' does not belong to table Table.]
&lt;br /&gt;
   System.Data.DataRow.get_Item(String columnName) +120
&lt;br /&gt;
   ASPNET.StarterKit.Communities.CommunityInfo..ctor(DataRow drow) +280
&lt;br /&gt;
   ASPNET.StarterKit.Communities.CommunityUtility.GetCommunityInfo() +421
&lt;br /&gt;
   ASPNET.StarterKit.Communities.CommunitiesModule.Application_BeginRequest(Object source, EventArgs e) +204
&lt;br /&gt;
   System.Web.SyncEventExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute() +60
&lt;br /&gt;
   System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean&amp;amp; completedSynchronously) +87
&lt;br /&gt;

&lt;br /&gt;
 
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
--------------------------------------------------------------------------------
&lt;br /&gt;
Version Information: Microsoft .NET Framework Version:1.1.4322.573; ASP.NET Version:1.1.4322.573 &lt;/b&gt;
&lt;br /&gt;

&lt;br /&gt;
Thanks.</description></item><item><title>MultiLevelSectionMenu (revisited)</title><link>http://forums.asp.net/thread/1084662.aspx</link><pubDate>Mon, 17 Oct 2005 03:55:24 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1084662</guid><dc:creator>StangFan</dc:creator><author>StangFan</author><slash:comments>1</slash:comments><comments>http://forums.asp.net/thread/1084662.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=131&amp;PostID=1084662</wfw:commentRss><description>I have read the posts about the multilevelSectionMenu that were posted here before, but nobody has really found a solution....&lt;BR&gt;&lt;BR&gt;I am encountering this error also.&amp;nbsp; &lt;BR&gt;&lt;BR&gt;I decided to do some debugging. &lt;BR&gt;&lt;BR&gt;What I noticed:&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;1.&amp;nbsp; When a user is not&amp;nbsp;logged in, The MultiLevelSectionMenu is always passing 0 as the _sectionMenuLink.SectionID&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;2.&amp;nbsp; When a user is logged in, the _sectionMenuLink.SectionID is getting set as it should be.&lt;BR&gt;&lt;BR&gt;Why would this be happening?&lt;BR&gt;&lt;BR&gt;Thanks,&lt;BR&gt;&lt;BR&gt;Keith Willis</description></item><item><title>Book price locale fix for GCN 1.1</title><link>http://forums.asp.net/thread/1068928.aspx</link><pubDate>Sat, 01 Oct 2005 02:35:37 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1068928</guid><dc:creator>wschlichtman</dc:creator><author>wschlichtman</author><slash:comments>2</slash:comments><comments>http://forums.asp.net/thread/1068928.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=131&amp;PostID=1068928</wfw:commentRss><description>I think I've fixed the book price bug listed in the documentation.&lt;BR&gt;&lt;BR&gt;In the file App_Code\Engine\Modules\Books\Controls\BookPrice.cs, add the following private variable to the BookPrice class:&lt;BR&gt;&lt;BR&gt;&lt;FONT color=#0000ff size=2&gt;
&lt;P&gt;private&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;string&lt;/FONT&gt;&lt;FONT size=2&gt; _priceFormatString = &lt;/FONT&gt;&lt;FONT color=#800000 size=2&gt;"{0:C}"&lt;/FONT&gt;&lt;FONT size=2&gt;;&lt;BR&gt;&lt;BR&gt;&lt;FONT size=3&gt;In the RenderContents() method, replace the line:&lt;BR&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;
&lt;P&gt;writer.Write(_price.ToString(&lt;/FONT&gt;&lt;FONT color=#800000 size=2&gt;"c"&lt;/FONT&gt;&lt;FONT size=2&gt;, &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;new&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#008080 size=2&gt;CultureInfo&lt;/FONT&gt;&lt;FONT size=2&gt;(_cultureName)));&lt;BR&gt;&lt;BR&gt;&lt;FONT size=3&gt;with:&lt;BR&gt;&lt;/FONT&gt;&lt;BR&gt;&lt;FONT size=2&gt;&lt;/P&gt;
&lt;P&gt;writer.Write(&lt;/FONT&gt;&lt;FONT color=#008080 size=2&gt;String&lt;/FONT&gt;&lt;FONT size=2&gt;.Format(_priceFormatString, _price));&lt;BR&gt;&lt;BR&gt;&lt;FONT size=3&gt;The CultureName property is never changed from it's initial state which prevents the CultureInfo() class from getting properly instantiated. The change I've proposed seems to work fine and the price is now localized. Please let me know if you find otherwise.&lt;/FONT&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;/FONT&gt;</description></item><item><title>Maximum for Newsletter</title><link>http://forums.asp.net/thread/1061852.aspx</link><pubDate>Sat, 24 Sep 2005 05:21:39 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1061852</guid><dc:creator>ksbrace</dc:creator><author>ksbrace</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1061852.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=131&amp;PostID=1061852</wfw:commentRss><description>Hello,&lt;BR&gt;&amp;nbsp; I have been using GCN for over 2 years now without any problems.&amp;nbsp; All of a sudden, I can't send the newsletter to everyone.&amp;nbsp; I have 768 registered users and I wasn't sure if there was a max number or not.&amp;nbsp; I have been using webhost4life since the beginning.&amp;nbsp; If there isn't a setting for this, I will contact them and ask them if they have some sort of cap.&amp;nbsp; Thanks in advance!&lt;BR&gt;Kelly</description></item><item><title>download link on your site does not work</title><link>http://forums.asp.net/thread/1050041.aspx</link><pubDate>Tue, 13 Sep 2005 06:16:03 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1050041</guid><dc:creator>sometech</dc:creator><author>sometech</author><slash:comments>1</slash:comments><comments>http://forums.asp.net/thread/1050041.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=131&amp;PostID=1050041</wfw:commentRss><description>Where can I download it at?</description></item><item><title>Amazon ASIN</title><link>http://forums.asp.net/thread/1049737.aspx</link><pubDate>Mon, 12 Sep 2005 22:52:57 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1049737</guid><dc:creator>benganeer1</dc:creator><author>benganeer1</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1049737.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=131&amp;PostID=1049737</wfw:commentRss><description>&lt;P&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;How could I find an ASIN that is not searchable, but, is stored on their servers? For instance, if you search for something on Amazon in their search function let’s say “MLB 13”, three of the 5 items will be found, but, I was able to figure out that if you roll the&lt;/SPAN&gt;&lt;/FONT&gt; &lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;fifth, sixth&lt;/SPAN&gt;&lt;/FONT&gt; &lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;seventh, eighth and ninth digits and change the last digit of the ASIN to every tenth letter in the URL you can find the other 2 of the 5 items that were not found using their search function based on the ASIN of three that were found using their search function and here is the URL for those items,&lt;/SPAN&gt;&lt;/FONT&gt; &lt;A title=http://www.amazon.com/exec/obidos/tg/detail/-/B00080M5T6 href="http://www.amazon.com/exec/obidos/tg/detail/-/B00080M5T6"&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;http://www.amazon.com/exec/obidos/tg/detail/-/B00080M5T6&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN&gt; and&lt;/SPAN&gt;&lt;/FONT&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Times New Roman" size=3&gt;&lt;SPAN&gt;&lt;A title=http://www.amazon.com/exec/obidos/tg/detail/-/B00080M5UA href="http://www.amazon.com/exec/obidos/tg/detail/-/B00080M5UA"&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;http://www.amazon.com/exec/obidos/tg/detail/-/B00080M5UA&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;Is there an easier way of doing this search without the manual data entry you know rolling the&lt;/SPAN&gt;&lt;/FONT&gt; &lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;fifth, sixth,&lt;/SPAN&gt;&lt;/FONT&gt; &lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;seventh, eighth and ninth digits and changing the last digit of the ASIN to every tenth letter, can a macro be written to shorten the search time and find the items on their servers that cannot be found using their search function? If you don’t know what I mean by rolling the&lt;/SPAN&gt;&lt;/FONT&gt; &lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;fifth, sixth,&lt;/SPAN&gt;&lt;/FONT&gt; &lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;seventh, eighth and ninth digits and changing the last digit of the ASIN to every tenth letter, here is an explanation below with a table I use to do it manually, let’s use&lt;/SPAN&gt;&lt;/FONT&gt; &lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;one of the previous ASIN as an example of what I mean only the last&lt;/SPAN&gt;&lt;/FONT&gt; &lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;6 digits in an ASIN change up to a certain point of the Base ASIN number.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;B000 = Base ASIN&lt;/SPAN&gt;&lt;/FONT&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;8 =&lt;/SPAN&gt;&lt;/FONT&gt; &lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;fifth rolling digit and can be any number.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;0 =&lt;/SPAN&gt;&lt;/FONT&gt; &lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;sixth rolling digit and can be any number.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;M =&lt;/SPAN&gt;&lt;/FONT&gt; &lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;seventh rolling digit and can be any letter or number.&lt;/SPAN&gt;&lt;/FONT&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;5 =&lt;/SPAN&gt;&lt;/FONT&gt; &lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;eighth rolling digit and can be any letter or number.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;U =&lt;/SPAN&gt;&lt;/FONT&gt; &lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;ninth rolling digit and can be any letter or number.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;A =&lt;/SPAN&gt;&lt;/FONT&gt; &lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;changes to every tenth letter in table shown below.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;TABLE &lt;/SPAN&gt;&lt;/FONT&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 6&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 7&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 8&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 9&lt;/SPAN&gt;&lt;/FONT&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;A&amp;nbsp;&amp;nbsp;&amp;nbsp; B&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; C&amp;nbsp;&amp;nbsp;&amp;nbsp; D&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; E&amp;nbsp;&amp;nbsp;&amp;nbsp; F&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; G&amp;nbsp;&amp;nbsp;&amp;nbsp; H&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; J&lt;/SPAN&gt;&lt;/FONT&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;K&amp;nbsp;&amp;nbsp;&amp;nbsp; L&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; M&amp;nbsp;&amp;nbsp;&amp;nbsp; N&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; O&amp;nbsp;&amp;nbsp;&amp;nbsp; P&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Q&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; R&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; S&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; T&lt;/SPAN&gt;&lt;/FONT&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;U&amp;nbsp;&amp;nbsp;&amp;nbsp; V&amp;nbsp;&amp;nbsp;&amp;nbsp; W&amp;nbsp;&amp;nbsp;&amp;nbsp; X&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Y&amp;nbsp;&amp;nbsp;&amp;nbsp; Z&lt;/SPAN&gt;&lt;/FONT&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;If we put those numbers above together, we get B00080M5UA and then we add this number to the end of the following URL &lt;/SPAN&gt;&lt;/FONT&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Times New Roman" size=3&gt;&lt;SPAN&gt;&lt;A title=http://www.amazon.com/exec/obidos/tg/detail/-/ href="http://www.amazon.com/exec/obidos/tg/detail/-/"&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;http://www.amazon.com/exec/obidos/tg/detail/-/&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/A&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN&gt; we get&lt;/SPAN&gt;&lt;/FONT&gt; &lt;A title=http://www.amazon.com/exec/obidos/tg/detail/-/B00080M5UA href="http://www.amazon.com/exec/obidos/tg/detail/-/B00080M5UA"&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;http://www.amazon.com/exec/obidos/tg/detail/-/B00080M5UA&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;, but to find the next item&lt;/SPAN&gt;&lt;/FONT&gt; &lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;on the Amazon using the URL we would remove the&lt;/SPAN&gt;&lt;/FONT&gt; &lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;“A” at the end and add&lt;/SPAN&gt;&lt;/FONT&gt; &lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;“K” to the end and you find the next item, remove the&lt;/SPAN&gt;&lt;/FONT&gt; &lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;“K” and add a&lt;/SPAN&gt;&lt;/FONT&gt; &lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;“U” at the end you find the next item and then to find the next item&lt;/SPAN&gt;&lt;/FONT&gt; &lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;and since the last ASIN we looked up was B00080M5UU&lt;/SPAN&gt;&lt;/FONT&gt; &lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;that you have to change the ninth digit from a&lt;/SPAN&gt;&lt;/FONT&gt; &lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;“U” to a&lt;/SPAN&gt;&lt;/FONT&gt; &lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;“V” and following the process to change the last digit to every&lt;/SPAN&gt;&lt;/FONT&gt; &lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;tenth number or letter in the table&lt;/SPAN&gt;&lt;/FONT&gt; &lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;the tenth digit changes from&lt;/SPAN&gt;&lt;/FONT&gt; &lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;“U” to&lt;/SPAN&gt;&lt;/FONT&gt; &lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;“4” and so forth.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;Please let me if&lt;/SPAN&gt;&lt;/FONT&gt; &lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;a macro or script can be written to cut down the manual data entry.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/FONT&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;Larry Abshire&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;</description></item><item><title>Access providers for ASP.NET 2.0 beta 2</title><link>http://forums.asp.net/thread/984574.aspx</link><pubDate>Tue, 12 Jul 2005 01:48:28 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:984574</guid><dc:creator>Redd</dc:creator><author>Redd</author><slash:comments>2</slash:comments><comments>http://forums.asp.net/thread/984574.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=131&amp;PostID=984574</wfw:commentRss><description>Does anyone have a link to an OleDb implementation of the membership, role, profile, etc. providers that works with ASP.NET 2.0?&amp;nbsp; I know the beta 1 VS 2005 shipped with these providers, but they were removed in beta 2 in favor of a SQL provider using SQL Express 2005 file databases. &lt;BR&gt;&lt;BR&gt;I was working on some plumbing for a CSK/GCN deravitive/follow-on and wanted to support Access as an optional back-end... but I don't really want to write my own providers for these pieces if someone out there has code for it already. &lt;BR&gt;&lt;BR&gt;</description></item><item><title>I'm new, basic questions</title><link>http://forums.asp.net/thread/1026751.aspx</link><pubDate>Sat, 20 Aug 2005 11:32:31 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1026751</guid><dc:creator>DeveloperMCDBA</dc:creator><author>DeveloperMCDBA</author><slash:comments>5</slash:comments><comments>http://forums.asp.net/thread/1026751.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=131&amp;PostID=1026751</wfw:commentRss><description>Hi, please excuse me for these basic questions. I'm not quickly apparent to me where to find these answers. &lt;BR&gt;&lt;BR&gt;I assume the GotCommunityNet is one of the starter kits. Please let me know if this assumption is wrong. &lt;BR&gt;&lt;BR&gt;Pretty much all these starter kits are open source, correct? I can do with them whatever I wish as long as I realize microsoft is not responsible?&lt;BR&gt;&lt;BR&gt;You always here about the asp.net forums software. I know Community Server is probably the latest or most developed edition of this, but it is not open source. Where is the most developed variant of the forums software that is still open source. I was also going to ask if GotCommunityNet has forums in it.&lt;BR&gt;&lt;BR&gt;Thanks!!&lt;BR&gt;&lt;BR&gt;Darren</description></item><item><title>Integration</title><link>http://forums.asp.net/thread/1023220.aspx</link><pubDate>Wed, 17 Aug 2005 10:18:02 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1023220</guid><dc:creator>aspBOD</dc:creator><author>aspBOD</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1023220.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=131&amp;PostID=1023220</wfw:commentRss><description>Has anybody tried integrating this forum system into their own applications.&lt;br&gt;
&lt;br&gt;
I would like my users to be able to log onto my site and automatically be logged into the forums.&lt;br&gt;
&lt;br&gt;
Is this possible?&lt;br&gt;
&lt;br&gt;</description></item></channel></rss>