views:

21

answers:

1

Hi i have a signup page and i want to check username exists or not with ajax

<%@ Control Language="C#" AutoEventWireup="true" CodeFile="Simple.ascx.cs" Inherits="UserControls_Simple" %>
نام کاربری: کلمه عبور

i eant to show label if user exists

how can i do that? tnx

A: 

Using Ajax to check if a user exists in your DB via a User Control (or whatever method you are using) is the same method you would use in a Web Page.

What kind of Ajax do you want to use? MS Ajax, jQuery, what?

Regardless, you will need to Call Web Services from Client Script to perform an AJAX request.

TheGeekYouNeed