Search

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

Matching Posts

  • Re: 'dbo.GetList' doesn't exist

    I just submitted it in Gemini.
    Posted to Core Framework (Forum) by svoeller99 on 4/21/2006
  • Re: 'dbo.GetList' doesn't exist

    The problem is an invalid column 'DisplayName' in the order by clause. I'm not sure if my assumption on this is correct, but I changed it to ListName, as follows: CREATE procedure dbo . GetList @ListName nvarchar ( 50 ), @ParentKey nvarchar ( 150 ), @DefinitionID int AS If @ParentKey = '' Begin Select DISTINCT E . [ListName] , E . [Level] , E . [DefinitionID] , E . [ParentID] , ( SELECT MAX ( [SortOrder] ) FROM Lists WHERE [ListName] = E . [ListName] ) As [MaxSortOrder] , ( SELECT COUNT ( EntryID
    Posted to Core Framework (Forum) by svoeller99 on 4/21/2006
  • Re: 'dbo.GetList' doesn't exist

    Still not fixed in 4.0.3. Check your 03.01.01.log file in Providers\DataProviders\SqlDataProvider and you'll see exactly what happened. It's a poorly written SP (invalid select statement). Here's the bad version: CREATE procedure dbo.GetList @ListName nvarchar(50), @ParentKey nvarchar(150), @DefinitionID int AS If @ParentKey = '' Begin Select DISTINCT E.[ListName], E.[Level], E.[DefinitionID], E.[ParentID], (SELECT MAX([SortOrder]) FROM Lists WHERE [ListName] = E.[ListName]) As [MaxSortOrder], (SELECT
    Posted to Core Framework (Forum) by svoeller99 on 4/21/2006
  • Re: Skinning problem - disappearing border between submenu items

    Find your spmenu.js file and comment out any calls to spm_applyRowBorder. This will prevent your borders from being overridden and shouldn't affect the menu, otherwise. I tried to lobby for this fix, but apparently to no avail, as your post suggests.
    Posted to DotNetNuke (Forum) by svoeller99 on 12/23/2005
  • Re: App_GlobalResources maps to a directory outside this application, which is not supported.

    I encountered this error after installing the release candidate, as well as after installing the release. Here's what worked for me. 1.) Uninstall and reinstall IIS. 2.) For each version of the framework that you have webapps running under, run %windir%\Microsoft.NET\Framework\{versiondir}\aspnet_regiis -i. I did this in order of the versions. 3.) In IIS, recreate each ASP.NET application. Right-click the folder >> Properties. Then, click the 'Create' button on the Directory tab. Next, switch
    Posted to Installation and Setup (Forum) by svoeller99 on 12/4/2005
  • New rows not showing in DataView when RowFilter is applied

    Hi everyone, I have a mysterious problem that occurs when I try to apply a RowFilter to my DataView, after adding a row to the DataSet associated with the DataView. Namely, the new row(s) doesn't show up. Here's my scenario: When the user executes the program, I create a DataSet and populate it with the contents of the table that I'm working with. I then create a DataView for the table. At this point, I can apply a RowFilter and it filters the data properly. When a new row is added, I add it to the
  • Re: Question about URL Rewriter rules in SiteUrls.config

    Great! Thanks, Scott. BTW, I'm reading Professional DotNetNuke ASP.NET Portals . This book is fantastic! Also, just thought I'd point out, the problem with duplicate pages also affects the following URL format: http://www.mysite.com/MyPortal/default.aspx?tabname=mypage Why not disallow identical page names? Thanks, Sean Voeller Rapidigm, Inc.
    Posted to Core Framework (Forum) by svoeller99 on 6/20/2005
  • Question about URL Rewriter rules in SiteUrls.config

    Over the course of using DNN as a framework for web development, I've often wished that I could refer to a page without needing the tab id. The closest that I've found is as follows: http://www.mysite.com/MyPortal/default.aspx ?tabname=Whatever I recently stumbled on an explanation of SiteUrls.config, which allows RewriterRule elements to be defined for use with the UrlRewrite HTTP module. I notice the following rule: <RewriterRule> <LookFor>.*/TabId/(\d+)(.*)</LookFor> <SendTo>
    Posted to Core Framework (Forum) by svoeller99 on 6/19/2005
  • Re: redirect using POST to an external non-ASP.NET page?

    Server.Transfer doesn't do the trick - I need to redirect to an external site (not even ASP.NET), which Server.Transfer won't do. I guess I'll have to resort to some messy javascript. Thanks for the reply, Sean
    Posted to Web Forms (Forum) by svoeller99 on 5/25/2005
  • redirect using POST to an external non-ASP.NET page?

    Hello, I'm trying to redirect to another site, passing login info. I want to use POST, rather than place the username and password in the query string. I'm considering resorting to an ugly fix that involves hidden fields and changing the action of the form in javascript. However, I'd like to place this logic in the code-behind for the form, if I can. Does anyone know how to create a POST request in code and use it to redirect the user's browser? Is this possible? Thanks, Sean
    Posted to Web Forms (Forum) by svoeller99 on 5/25/2005
Page 1 of 8 (73 items) 1 2 3 4 5 Next > ... Last ยป