[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.8

Paging in repeater control causing query problem

Asked by GoldenBear in Programming for ASP.NET

Tags: asp.net

I have a search page which queries through users that match certain criteria i.e. gender. It then displays the results of the query in a repeater control.

When I added paging, instead of displaying only the results of the query, it displays the records of the entire database (I also had to switch from using a DataReader to using a DataSet in order to get the paging to work).

The paging code is based on this:
http://aspnet.4guysfromrolla.com/demos/TestRepeater.aspx

Does anyone have ideas how to fix this?

I considered using a gridview, but I need to display more than 1 record per row.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
public partial class SearchResults : System.Web.UI.Page
{ 

	public int CurrentPage
	{
		get
		{
			// look for current page in ViewState
			object o = this.ViewState["_CurrentPage"];
			if (o == null)
				return 0; // default page index of 0
			else
				return (int)o;
		} 
		set
		{
			this.ViewState["_CurrentPage"] = value;
		}
	} 
	protected void Page_Load(object sender, EventArgs e)
	{
		ItemsGet();
	} 
    private void ItemsGet()
    {
        // Define ADO.NET objects.
        string selectSQL;
        selectSQL = "SELECT * FROM Members ";
        selectSQL += "WHERE ";
        selectSQL += Session["Search.gender"].ToString() == string.Empty ? "" : "gender=@gender"; 
		string connectionString = WebConfigurationManager.ConnectionStrings["LocalSqlServer"].ConnectionString;
		SqlConnection con = new SqlConnection(connectionString);
		SqlCommand cmd = new SqlCommand(selectSQL, con);
		SqlDataAdapter adapter = new SqlDataAdapter(cmd);
    	DataSet dsSearch = new DataSet(); 
        // Add the parameters
        cmd.Parameters.AddWithValue("@gender", Session["Search.gender"]); 
		// Try to open database and read information.
		try
		{
            con.Open();
			// All the information in transferred with one command.
			// This command creates a new DataTable (named Search)
			// inside the DataSet.
			adapter.Fill(dsSearch,"Search"); 
			
		}
		catch (Exception err)
		{
			lblStatus.Text = err.Message;
		}
		finally
		{
            // Close the connection.
            con.Close();
		} 
		// Populate the PagedDataSource control with the DataSet
        PagedDataSource pgResults = new PagedDataSource();
        pgResults.DataSource = dsSearch.Tables["Search"].DefaultView;
 
        // Indicate that the data should be paged
        pgResults.AllowPaging = true;
 
        // Set the number of items you wish to display per page
        pgResults.PageSize = 20;
 
        // Set the PagedDataSource's current page
        pgResults.CurrentPageIndex = CurrentPage;
 
        lblCurrentPage.Text = "Page: " + (CurrentPage + 1).ToString() + " of " + pgResults.PageCount.ToString();
 
        // Disable Prev or Next buttons if necessary
        cmdPrev.Enabled = !pgResults.IsFirstPage;
        cmdNext.Enabled = !pgResults.IsLastPage;
 
        rptSearch.DataSource = pgResults;
        rptSearch.DataBind();
    } 
    protected void  cmdPrev_Click1(object sender, EventArgs e)
	{
		// Set viewstate variable to the previous page
        CurrentPage -= 1;
 
        // Reload control
        ItemsGet();
	}
	protected void  cmdNext_Click1(object sender, EventArgs e)
	{
		// Set viewstate variable to the next page
        CurrentPage += 1;
 
        // Reload control
        ItemsGet();
	}
}
 
[+][-]11/02/09 07:23 AM, ID: 25720165Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11/02/09 07:32 AM, ID: 25720252Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/02/09 07:43 AM, ID: 25720379Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11/02/09 07:52 AM, ID: 25720464Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/02/09 10:59 AM, ID: 25722438Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zone: Programming for ASP.NET
Tags: asp.net
Sign Up Now!
Solution Provided By: locke_a
Participating Experts: 1
Solution Grade: A
 
[+][-]11/02/09 06:16 PM, ID: 25725598Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/03/09 12:54 AM, ID: 25727061Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/03/09 05:18 AM, ID: 25728593Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/03/09 05:34 AM, ID: 25728727Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/03/09 06:46 AM, ID: 25729401Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/03/09 06:55 AM, ID: 25729502Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091021-EE-VQP-81 - Hierarchy / EE_QW_3_20080625