Search

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

Matching Posts

  • Re: Autocompleteextender simple question

    Sorry if I misunderstood you question. If your just looking to limit the results to the returned by your web service one way to do it if you using a query it to use the Select Top x ( x being whatever number you need) such as this CREATE PROCEDURE [ dbo ] . [ GetListItemsNames ] @ModuleID int , @Filter nvarchar ( 255 ) AS Select Distinct Top 10 [ Name ] from dbo.GG_ListItems where ModuleID = @ModuleID AND [ Name ] like @Filter + '%' Order By [ Name ] Asc I do not know how to a pass a parameter to
  • Re: Passing parameters when using AutoCompleteExtender

    In My database each module which there can be more that one per page stores the information for each module based on the Module ID. My stored Proc would look like this: CREATE PROCEDURE [dbo].[GetListItemsNames] @ModuleID int , @Filter nvarchar (255) AS Select Distinct [Name] from dbo.GG_ListItems where ModuleID = @ModuleID AND [Name] like @Filter + '%' Order By [Name] Asc No matter what the parameter is that I need to pass in my questions is there any way to pass this or any other parameters using
    Posted to Custom Modules (Forum) by Sponge_Bob on 5/11/2006
  • Passing parameters when using AutoCompleteExtender

    I am creating a DotNetNuke module and I am using some of the way cool atlas controls. I want to use the auto complete for a textbox to filter a list but I seem to have a problem Because this is a module that will be on several different pages with different data in the list for each I need to pass another parameter into the autocomplete function such as this < WebMethod()> _ Public Function GetSearchTerms( ByVal PrefixText As String , ByVal Count As Integer , ByVal ModuleID As Integer ) As
    Posted to Custom Modules (Forum) by Sponge_Bob on 5/10/2006
  • Re: Autocompleteextender simple question

    I think your looking for the MinimumPrefixLength Property < atlas:AutoCompleteExtender ID ="AutoCompleteSearch" MinimumPrefixLength ="1" runat ="server" > < atlas:AutoCompleteProperties TargetControlID ="SearchText" Enabled ="true" ServicePath ="SimpleListService.asmx" ServiceMethod ="GetSearchTerms" /> </ atlas:AutoCompleteExtender >
  • Re: Urgent: Custom User Control Error

    I am having very similar errors. I am getting the min max error and the logfile is showing me Could not load file or assembly 'App_global.asax The thing is that the module is testing fine on my development machine before it is deployed. Previous versions of my module worked fine. Any help on this would be great.
    Posted to Custom Modules (Forum) by Sponge_Bob on 5/1/2006
  • Re: Beginner Problem to use DNN 4.0.2 source in VS 2005

    There a couple of reason for this, the first that I can think of is that in your Precompiled website the install date may be present in the web.config file. This tells Dnn that a portal is already installed and then Dnn will not install the default template. I also think that Dnn modifies/writes a file to disk somewhere that tells it that there is already a Portal installed and not to install the default site template. I am not certain of this, maybe someone can help us out with this and clarify
    Posted to DotNetNuke (Forum) by Sponge_Bob on 2/13/2006
  • Re: Problem Registering DesktopModule

    What version of Dnn are you haveing the problem with. I also am having issues with the bussinesscontrollerclass see post http://forums.asp.net/1192665/ShowPost.aspx
    Posted to Custom Modules (Forum) by Sponge_Bob on 2/12/2006
  • Re: using baseclass for multiple ascx files

    If you are using vs 2003 then your base class may be declared as MustInherits which may cause this. vs 2003 doen not like it when you use base pages or usercontrols that are MustInherits types.
    Posted to Custom Modules (Forum) by Sponge_Bob on 2/12/2006
  • Re: Url rewrite

    erezabou wrote: Hi, I need to call this web page: http://mydomain.com/default.aspx?vte=1524 with this url http://mydomain.com/1524 How can I do it with Dnn? I recieved an email on this issue. Think it was from you Erezabou. Just in case you did not get my reply I willl post it here. What your requesting here may not work. IIS will have to know that you are looking for an aspx page and therefore you would need an aspx extension on you page to have an address work. Eg http://domain.com/vte/123.aspx
    Posted to DotNetNuke (Forum) by Sponge_Bob on 2/12/2006
  • Re: Beginner Problem to use DNN 4.0.2 source in VS 2005

    You are very welcome Fabian. I will leave this zip file on my ftp server for anyone who wants to download it.
    Posted to DotNetNuke (Forum) by Sponge_Bob on 2/11/2006
Page 1 of 9 (86 items) 1 2 3 4 5 Next > ... Last »