ConvincingMail

Emailing Software News Emailing Software News RSS Feed


The New Autocomplete Control Version Released

The new ConvincingMail Autocomplete/Autosuggest Control version was just released. Now you can change the look of the suggestion item with your own customizable template. Also it is possible to pass your own suggestion items from the server and work with all their properties on the client side.
Read The New Autocomplete Control Version Released Full Text Full Text  The New Autocomplete Control Version Released Comments Comments (4)
 

ASP.NET AJAX AutoComplete Control Released

We just released an ASP.NET 2.0 AJAX AutoComplete control extender. Our goal was to make an easy to use control with Facebook like style.
Check demo and documentation here:ASP.NET AutoComplete Control Extender

Read ASP.NET AJAX AutoComplete Control Released Full Text Full Text  ASP.NET AJAX AutoComplete Control Released Comments Comments (20)
 

ConvincingMail Free Online Email Validation Tool is Launched

ConvincingMail free online email validation service allows you to validate any email address and to view the validation log.
The script will check email syntax, the domain name and the account on the domain MX server.
Read ConvincingMail Free Online Email Validation Tool is Launched Full Text Full Text  ConvincingMail Free Online Email Validation Tool is Launched Comments Comments (13)
 

ConvincingMail Email Marketing Software Release

ConvincingMail team is happy to announce a release of a new email marketing software.
ConvincingMail email marketing is a web-based solution that enables users to quickly and easily create and launch email marketing campaigns.
Currently we have three product versions to offer: Professional, Standard and Demo.
In order to experience our solution in action download ConvincingMail Email Marketing Demo version for free.
With ConvincingMail software you will quickly get convincing results!
Get a convincing start now!
Read ConvincingMail Email Marketing Software Release Full Text Full Text  ConvincingMail Email Marketing Software Release Comments Comments (1)
 

Make your work colorful, change CM application interface using new skins!

ConvincingMail software is continuously being upgraded and designed with the end-user in mind.
Now we added new skins to change the appearance of the program interface. Choose the skin according to your visual tastes with ease!
Read Make your work colorful, change CM application interface using new skins! Full Text Full Text  Make your work colorful, change CM application interface using new skins! Comments Comments (0)
 

ASP.NET AJAX AutoComplete Control Demonstration.

Start typing in the textboxes below. Note that County is filtered by state and City is filtered by County boxes.
The state box shows suggestions even if the box is empty. Also it allows to select more than one state.
State
State IDs:
Selected states:  
The county box Autocomplete extender uses a template to render list items. You can create your own template to change the look of the items.
County
County Id:
The city box Autocomplete extender uses a different css style for list items. You can change this to fit your design.
City
City Id:

ConvincingMail AutoComplete Control Description

ConvincingMail AutoComplete is an ASP.NET AJAX extender that can be attached to any TextBox control, and will associate that control with a popup list to display items that returend by the webservice for the prefix typed into the textbox.

The list with suggested items supplied by a web service is positioned under the textbox.

In the sample above, the textbox is associated with a ConvincingMail AutoComplete extender that pulls States, Counties and Cities. Start typing in the textbox to see a list of suggested items returned by a webservice.

The County suggestions are filtered by the State value and City suggestions are filtered by County value.

Starting from version 2.2 your can specify an html template to render the listing item. Also your server side function can return a more complex json object which you can use to render the item template or in client side functions.

ConvincingMail AutoComplete Properties & Usage

Control setup:
To use the control on the asp.net page you need to follow this steps:
  • Step 1: Add ConvincingMail AutoComplete dll refference to your project.
  • Step 2: Declare control refference on your page. e.g.:
    <%@ Register Assembly="ConvincingMail.AdvancedAutoSuggest" Namespace="ConvincingMail.AdvancedAutoSuggest" TagPrefix="cc1" %>
  • Step 3: Add Prototype JS Framework reference to your page.
  • Step 4: Add the control to your page and set properties. e.g.:
    <cc1:AdvancedAutoSuggestExtender TargetControlID="CountyTextBox" AdditionalFields="StateIdTextBox" UpdateField="CountyIdTextBox" TitleTdCss="titleTd-green" TitleTrCss="titleTr-green" CommentsTdCss="commentsTd-green" CommentsTrCss="commentsTr-green" HilightedTrCss="suggestionsHilightedTr-green" ServiceUrl="~/Suggestions.asmx/CountySuggest" ID="AdvancedAutoSuggestExtender1" runat="server" /%>
    TargetControlID -- Required. The TextBox control where the user types content to be automatically completed.
    ServiceUrl -- Required. URL of the webservice which returns suggestions.
    AdditionalFields -- Optional. Comma separated list of controls which should be used to filter results.
    UpdateField -- Optional. The TextBox (HiddenTextBox) control where the ID value of selected item is set.
    TitleTdCss -- Optional. CSS style of the suggestion item title cell.
    TitleTrCss -- Optional. CSS style of the suggestion item title row.
    CommentsTdCss -- Optional. CSS style of the suggestion item comments title cell.
    CommentsTrCss -- Optional. CSS style of the suggestion item comments title row.
    HilightedTrCss -- Optional (v2.1). CSS style of the suggestion hilighted item (mouse over).
    SuggestOnEmptyField -- Optional. When true the control makes a server call for suggestions when the text box is empty. (default: false).
    OnClientItemSelected -- Optional, (v2.1). ClientSide Javascript function to call when an item is selected from the suggestions list. The function accepts two params: sender and item. The item param is the selected suggestion item has the following properties:
    • Id - An ID value of the selected item.
    • Title - A highlighted title of the selected item. (like it appeares in the suggestion list)
    • Description - Selected item description. (like it appeares in the suggestion list)
    • TitleValue - Original title of the item. (no hilighting tags)
           Starting from v2.2 you can specify your own properties.
    Template -- Optional, (v2.2). An HTML Prototypejs Template to render the listing item.
Suggestions WebService:
  • Step 1: -- Create new webservice (.asmx) in your project. e.g.: Suggestions.asmx
  • Step 2: -- Create the method to return a JSON list of items. View Code Example

Download ASP.NET AJAX AutoComplete Control (v2.2)

Leave a Comment

Rows per page: 
10 25 50 100 
1 Total Found: 4
Kori Francis wrote:
Wednesday, November 19, 2008 9:12:46 AM
Hi,

I'm just wondering if there will be a version compiled for the 3.0/3.5 version of the AJAX Control Toolkit?
Mikhail wrote:
Friday, October 31, 2008 6:00:56 AM
Hi Davide,
You can't use the webmethod with the current version of the autosuggest control. There is the prototypejs Ajax.Request is used to retrieve results (see http://www.prototypejs.org/api/ajax/request for more info.).
Note that you can use any URL which returns the JSON result with suggestions.
Thanks.
davide wrote:
Friday, October 31, 2008 5:27:14 AM
Hi, is it possible to get the suggestion list from a webmethod instead of a webservice (like in ajaxcontroltoolkit.autocomplete)?
Mikhail wrote:
Friday, September 05, 2008 6:48:22 PM
The new version (2.2) was released.
Read old comments here: old comments

Please use our forum for suggestions and help.
Thanks

ConvincingMail Special Offer. Purchase Email Marketing Solution at discount prices. Special Offer

ConvincingMail© Professional is 50% less expensive if you order now! Get it for only $299 (you save $300 of usual price $599) Limited time offer


Try the demo version of our email marketing software. Try Online

Before choosing the version right for you, try our online demo absolutely free. You can use our demo account
(user:demo password:demo) or create a new one.

Download the free demo version of ConvincingMail email marketing solution and try it on your server and environment. Free Demo

Try ConvincingMail© solution in your environment. The demo version is limited to 5 lists and 500 contacts. Download now and use it absolutely free.

ConvincingMail Free Online Email Validation Tool. Validate any number of email accounts for free. Email Validation

Try ConvincingMail© free email validation service. Validate email syntax, domain and account.

Discuss any topic related to email marketing, list building, deliverability etc. and other ConvincingMail tools (Email List Validator and Autocomplete/Autosuggest ajax control) in the forum. Discussion Forum

Visit our community forums! Feel free to ask questions about ConvincingMail© software & Servicies and email marketing. We are ready to share our experience with everyone.
ConvincingMail.com - Email Marketing Software. Terms of use License Agreement Privacy Policy
Copyright © 2007 ConvincingMail.com