Results 1 to 5 of 5

Thread: Frontpage asp autocomplete

  1. #1
    Join Date
    May 2009
    Posts
    22

    Frontpage asp autocomplete

    I want to know that how to design an autocomplete frontage in ASP.NET with C# . what additional controls I need to add ? Can someone help me ?
    Thanks

  2. #2
    Join Date
    Nov 2008
    Posts
    29

    Re: Frontpage asp autocomplete

    ASP.NET is not platform-independent. Because it is hosted by IIS, ASP.NET must run on Windows-based servers that have the Microsoft .NET Framework installed. Therefore, you cannot use FrontPage 2003 to create ASP.NET pages that are hosted on non-Windows-based servers, such as those running Linux or Apache.

  3. #3
    Join Date
    Dec 2008
    Posts
    41

    Re: Frontpage asp autocomplete

    If you choose Tools and then Options from the menu bar, and click the Configure Editors tab, you can see which file extensions you can open with FrontPage. ASP.NET files typically have an .aspx file extension. However, you might encounter other types of files. For example, when you create a database connection, FrontPage also creates an /_Fpclass folder, as it does with ASP pages. The difference is that when you are using ASP.NET, FrontPage includes a number of configuration files and utilities for working with ASP.NET pages and database connections. These files are called "user controls" and have an .ascx file extension.

  4. #4
    Join Date
    Nov 2008
    Posts
    70

    Re: Frontpage asp autocomplete

    You can also use class files in code-behind pages, which is discussed later in this article. For example, if you had a Default.aspx page, you might also see a Default.cs or Default.vb page as well. The .cs extension indicates that the code was written in C# (pronounced "see sharp"), and the .vb extension indicates files written in Microsoft Visual Basic .NET.

  5. #5
    Join Date
    Jul 2008
    Posts
    92

    Re: Frontpage asp autocomplete

    The textbox is linked with an AutoCompleteExtender which is initialized with this code. The italic properties are optional:

    Code:
    <ajaxToolkit:AutoCompleteExtender 
        runat="server" 
        ID="autoComplete1" 
        TargetControlID="myTextBox"
        ServiceMethod="GetCompletionList"
        ServicePath="AutoComplete.asmx"
        MinimumPrefixLength="2" 
        CompletionInterval="1000"
        EnableCaching="true"
        CompletionSetCount="20" 
        CompletionListCssClass="autocomplete_completionListElement" 
        CompletionListItemCssClass="autocomplete_listItem" 
        CompletionListHighlightedItemCssClass="autocomplete_highlightedListItem"
        DelimiterCharacters=";, :"
        ShowOnlyCurrentWordInCompletionListItem="true">
            <Animations>
                <OnShow> ... </OnShow>
                <OnHide> ... </OnHide>
            </Animations>
    </ajaxToolkit:AutoCompleteExtender>
    TargetControlID - The TextBox control where the user types content to be automatically completed.

    ServiceMethod - The web service method to be called. The signature of this method must match the following:

    Code:
    [System.Web.Services.WebMethod]
    [System.Web.Script.Services.ScriptMethod]
    public string[] GetCompletionList(string prefixText, int count)

Similar Threads

  1. Can I have FrontPage Server Extentions on IIS 7.5?
    By Aerona in forum Technology & Internet
    Replies: 5
    Last Post: 21-06-2011, 11:18 AM
  2. How to combine the use of FrontPage and Dreamweaver
    By Kaufman in forum Software Development
    Replies: 5
    Last Post: 05-03-2010, 01:42 AM
  3. How to insert Flash animations in FrontPage
    By Mahish in forum Software Development
    Replies: 4
    Last Post: 05-03-2010, 01:03 AM
  4. How to set navigation views in FrontPage XP
    By Galbraith in forum Software Development
    Replies: 5
    Last Post: 23-02-2010, 06:12 AM
  5. Need FrontPage 2002 extension plug-in
    By Makayla-alex in forum Windows Software
    Replies: 4
    Last Post: 14-02-2010, 03:54 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,715,549,461.92892 seconds with 17 queries