ConvincingMail

Emailing Software News Emailing Software News RSS Feed


Level of openings is a key to success!

When speaking about email marketing, one of the key elements of the overall analysis of the campaign remains the level of opened messages.
Depending on what web platform you are using, the list of following indicators can be used in
the analysis ...
Read Level of openings is a  key to success! Full Text Full Text  Level of openings is a  key to success! Comments Comments (0)
 

Signed Out Users: from Global to Local

Having the general overview of the campaigns isn’t enough when the question comes to the reason why some users signed out.
Read Signed Out Users: from Global to Local Full Text Full Text  Signed Out Users: from Global to Local Comments Comments (0)
 

Launched a campaign? Track the data!

Launching a campaign is just a first step towards improving the brand awareness and overall
position on the market of your company. The next step is the campaign evaluation process aimed
at assuring a high quality of performance.
What indicators are taken into consideration in this process?
Read Launched a campaign? Track the data! Full Text Full Text  Launched a campaign? Track the data! Comments Comments (0)
 

Can a campaign be successful without following the tracking data?

If you want to reach your goals and attract your target audience by your email marketing campaigns, than it is utterly important to follow the results after launching any campaign.
What indicators can help you enforce the performance of your mail marketing campaigns?
Read Can a campaign be successful without following the tracking data?  Full Text Full Text  Can a campaign be successful without following the tracking data?  Comments Comments (0)
 

Database or Email Address Valorization is Necessary

In order to register the number of transactions made as a result of your campaign, a valorization by signed-up users or email addresses is used.
This approach allows following the sources of transactions within a certain period of time.
Read Database or Email Address Valorization is Necessary Full Text Full Text  Database or Email Address Valorization is Necessary 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.

Starting from version x.x.2.3 you can specify the header and footer templates, loading text and also we added more clientside events.

The latest version is x.x.2.4. Fixed IE8 bugs and some other minor changes in javascript code. Should work fine with the server code from the previous version.

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.

    View Optional Fields
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.0.2.4 and v3.5.2.5)

Leave a Comment

Rows per page: 
10 25 50 100 
<< < 1 2 3 Total Found: 29
Billy Hui wrote:
Sunday, June 21, 2009 12:47:00 PM
Hi Mikhail,

I am using IE6 to test.
Your site autosuggest is working fine.
However, I have developed a site with autosuggest.
It works fine in IE7,8,firefox but not IE6.

I have the following javascript - Missing Object.
May you help? Many thanks
Mikhail wrote:
Sunday, June 21, 2009 12:11:24 PM
Hi Edi,
Thank you for noticing this bug in IE 6.
It is currently fixed on the site and I'm going to release a hot fix of the control soon.
Thanks
Mikhail
Edi wrote:
Tuesday, June 16, 2009 8:51:42 AM
I am currently runing your page on IE6 and I get javascripts error.
And the State list above doesn't display values.
Could you check it?
Mikhail wrote:
Tuesday, June 16, 2009 8:38:06 AM
Yes. It works fine in IE6
Edi wrote:
Tuesday, June 16, 2009 7:54:15 AM
Does it work on IE 6 ??
Arlen wrote:
Wednesday, May 06, 2009 3:15:33 AM
Thanks it works for me perfectly
thanks a lot,
saulo cavalcanta wrote:
Thursday, April 16, 2009 7:55:54 PM
thanks man!
Joe wrote:
Saturday, January 31, 2009 7:03:23 PM
WOW that's really great!!!
I was awayting for the loading feature.
That is exactly what I need.
Thank you
Mikhail wrote:
Saturday, January 31, 2009 6:54:35 PM
Hi All,
The new version x.x.2.3 has been released.
some of new features are:
Loading indication, more client side events, header and footer templates, changed server side core structure.

Note that if you want to upgrade from the previous versions you need to change your serverside code.

From
return SuggestionItem.SuggestionArrayToJSON(items.ToArray(), tryValue);

To
//create result Item
SuggestionResult suggestionResult = new SuggestionResult();
suggestionResult.Items = items.ToArray();
suggestionResult.Header = new BasicSuggestionTemplate("Please select an item.");//optional
suggestionResult.Footer = new BasicSuggestionTemplate("Powered by ConvincingMail");//optional
return suggestionResult.ToJSON(tryValue);


For help please use our Discussion Forum

Thanks
Mikhail

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  edition of ConvincingMail email marketing solution and try it on your server and environment. Free Edition

Try ConvincingMail© solution in your environment. The starter edition 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