Click here to Skip to main content
15,879,490 members
Articles / Web Development / ASP.NET

SearchableSqlProfileProvider - The Searchable SQL Profile Provider

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
23 Feb 2009CPOL3 min read 23.9K   615   26  
An extension to the Microsoft SqlProfileProvider, to provide a search interface. This article is based on Shawn Wildermuth's - "a.k.a. ADO Guy" - work.
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;

public partial class users_profile : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!Page.IsPostBack)
        {
            DropDownListTitle.SelectedIndex = Profile.Title;
            TextBoxName.Text = Profile.Name;
            DropDownListGender.SelectedIndex = Profile.Gender;
        }
    }

    protected void ButtonSave_Click(object sender, EventArgs e)
    {
        Profile.Title = DropDownListTitle.SelectedIndex;
        Profile.Name = TextBoxName.Text;
        Profile.Gender = DropDownListGender.SelectedIndex;
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer Viserware Technologies
Egypt Egypt
A physician, specialized in plastic surgery, with passion for computer programming, mostly database, windows and web applications.

Comments and Discussions