C# - Populate Many GridView Controls From One Stored Procedure?

Nov 18, 2010

I have a stored procedure in SQL Server which returns seven result sets. I would like to call this stored procedure from ASP.NET and populate seven GridViews on my ASP.NET page with the results. I am using a SqlDataReader to get the data, however I'm struggling with the C# code to fill the GridViews.

I have created a DAL class to get the data and I have this method in there:

public SqlDataReader CheckDataIntegrity()
{
SqlCommand cmd = new SqlCommand("cc.DataCheck");
return MultipleResults(cmd);
}

The helper method MultipleResults looks like this:

private SqlDataReader MultipleResults(SqlCommand cmd)
{
SqlConnection con = new SqlConnection(_connectionString);

[Code]....

View 2 Replies


Similar Messages:

Forms Data Controls :: Trying To Populate Gridview From Stored Procedure?

May 12, 2010

[Code]....

[Code]....

View 1 Replies

Forms Data Controls :: Gridview Populate From Stored Procedure?

Oct 15, 2010

I'm pretty new at web programming but a lot of years as a client-server dev.

I'm populating a gridview from a stored procedure, but I don't want to actually execute the populate till I have all the values filled in the page. (some are static textboxes, a calendar (date) value and some drop-downs that are populated earlier) I see there's nothing like gridview1.show() like there is in c# windows form programming. I tried

[Code]....

[Code]....

View 2 Replies

Forms Data Controls :: Populate Drop Down List Using Stored Stored Procedure

Mar 14, 2010

i want data to drop down list using stored procedure .

However im not able to do that.

View 3 Replies

Getting Results From A Stored Procedure To Populate A GridView?

Mar 4, 2011

I have a windows aspx form that I have a TextBox, Button and a GridView. The TextBox is stored as a variable @subschedule and passed to a stored procedure. What I'd like to do is to populate the results of that procedure into my GridView.

View 3 Replies

Forms Data Controls :: Trying To Populate A Datagrid Using A Stored Procedure

Jun 7, 2010

I'm tring to populate a datagrid using a stored procedure that returns about 20 fields (this part I figured out), but the kicker here is that for this one particular page I only want to display about 6 of those 20 returned fields.

I did find on passing the procedure the parameters that are required, and populating the datagrid, but haven't found anything (not that I can tell) that explains how to only view certain fields that have been returned.

I'm using VS 2008 and VB for my coding against a MS SQL 2008 server. All of the stored procedures are working with current windows applications.

View 6 Replies

Forms Data Controls :: Populate ListBox From Stored Procedure?

Aug 11, 2010

I have a listbox which I need to populate with the results from a stored procedure. I have a class Ethics and I can call my stored proc there but I don't know how to populate the listBox from this point on. Here's what I have so far:

[Code]....

View 2 Replies

Data Controls :: Bind (Populate) Repeater Using Stored Procedure

Jan 24, 2016

I need to display  the results of a stored procedure in to table tag in asp.net c#. I do not know how to use reasonable control in this case.

View 1 Replies

DataSource Controls :: Trying To Populate A Dropdown From A Stored Procedure That Includes Parameters

Nov 11, 2010

I am trying to populate a dropdown from a stored procedure that includes parameters. The parameters are programmatically defined variables. I have been working at this for hours, and scoured the internet for a tutorial. I have come up with the following solution below. However, it does not work. Its not pulling any data, and I am not even sure that the page is making it into the GetLast5Schedules_Selecting Event. There has to be a more efficient/less time consuming way to do this!

[Code]....

[Code]....

[Code]....

View 1 Replies

DataSource Controls :: How To Convert The Oracle Stored Procedure To Sqlserver 2005 Stored Procedure

Apr 2, 2010

This is surareddy. i nead some small clarification in the "Stored Procedure"

how to convert the oracle Stored Procedure to sqlserver2005/2008 Stored Procedure.

right now i am enhancing the project that project already developed the oracle Stored Procedure. now our company is using sqlserver 2005/2008.

how to convert the Oracle Stored Procedure to sqlserver 2005 Stored Procedure

View 4 Replies

DataSource Controls :: Do Not Use Or Call Any Stored Procedure But It Says "Could Not Find Stored Procedure 'xxxxx'?

Dec 9, 2010

Initially, I have tried to use stored procedure. But I changed my mind and preferred to call sql query in codebase with command text. However, it stills tries to find initially-called stored procedure (which is neither called or exists).I think that it is related caching. But I tried it with different browsers it did not work.What might be the reason?

View 4 Replies

Web Forms :: Should Write A New Stored Procedure To Populate Drop Down List

May 14, 2010

I am going to add a computed column to a stored procedure that will combine the last and first names of all of the customers in my db. This will be used to populate a drop down list that will allow the user to select a customer so a new record can be entered for that customer.

I was planning on creating this computed column on the procedure that returns all of the customers and all of there information. My db is small so this shouldn't be a big deal, as far as overhead. This doesn't seem like the best approach if the app was using a much larger db. It would unnecessarily return a lot of extra data and make it slower.

I'm curios when a procedure that's dedicated to returning just the customer's first name, last name, and ID should be used, instead of one that returns everything. There are a number of variables that could make this hard to determine, such as number of rows and columns. I wanted to try to get an idea of a cut off point or rule of thumb on this, if possible.

View 2 Replies

DataSource Controls :: Execute A Stored Procedure Within A Stored Procedure?

Jan 18, 2010

Does anybody if it is possible that a stored procedure returns rows which is the result of the execution of another sp? Something like..

[Code]....

View 11 Replies

DataSource Controls :: How To Call A Stored Procedure In Another Stored Procedure

May 13, 2010

i want to return output parameter from 1 storeprocedure. into another stored procedure.

View 7 Replies

Forms Data Controls :: Loop Gridview To Update Values In Gridview To Stored Procedure?

Jan 14, 2010

I would like to ask a question on the visual basic codes to loop the gridview to retrieve the values and based on the values, it will be provided as parameters to update to the database table using stored procedure.

Firstly, I have a gridview named grvProduct. The page (ui) will be loaded with data from the database with the use of stored procedures. And only certain values can be edited through the use of template in gridview. So based on those edited values, I'm supposed to pass these values as parameters to the stored procedure which will then update a database table.

Let say, I have 3 records retrieved from the database and displayed in the gridview. And I would like to edit a values in the 3 records, how do I do batch update and pass those parameters to the stored procedure? I went to debug and step through the visual basic codes and realised there were too many arguments specified because I actually loop the gridview.

Below is my visual basic codes:

[Code]....

Below is my Stored Procedure code:
[Code]....

I believe it is the error in the looping of the gridview which results that I could not batch update the data/values.

View 3 Replies

DataSource Controls :: Using Stored Procedure And Using Databind For The Gridview?

Oct 29, 2010

am having trouble figuring this one out. Am using stored procedure and using databind for the gridview . i got the codes off other sites. I'm guessing its the code that i've underlined, how or what do i use as the datasource for the sorting event. I used the Session for the paging event and that works but not for sorting.

[Code]....

View 2 Replies

Forms Data Controls :: Stored Procedure And Gridview?

Jul 31, 2010

I have one problem with stored procedure.

My table:
tbl_payments

UserId
PaymentId
PaymentType

Stored procedure:

ALTER PROCEDURE dbo.Select_Customer

@PaymentId varchar(100)
/*
(
@parameter1 int = 5, [code]....

View 10 Replies

Data Controls :: Bind GridView Using Stored Procedure?

Mar 31, 2013

How to create stored procedure(with input and output parameter) in sql server and use in asp.net like binding the result in grid view.

View 1 Replies

Data Controls :: Bind Gridview Using Stored Procedure

Oct 12, 2012

<table class="adminContent">
<KMMatrimony:AMIZGridView ID="gvEventMemberEntry" runat="server" AutoGenerateColumns="false"
Visible="true" Width="100%" AllowPaging="true" ShowHeaderWhenEmpty="true" EnablePersistedSelection="true"
DataKeyNames="Regno,ProcessFlag,Caste,Subsect" PageSize="20" EmptyDataText="No Records Found!">
<Columns>
<asp:TemplateField HeaderText="RegNo" ItemStyle-Width="8%">

[CODE]...

how can i bind my gridview using stored procedur asp dot net 4.0 C# ....

View 1 Replies

Forms Data Controls :: Paging Using Stored Procedure In Gridview?

Jul 12, 2010

i need an example of a paging gridview using stored procedure.

i tried finding on the web and i can't find exactly what i need.

View 7 Replies

Forms Data Controls :: How To Use A GridView With A Stored Procedure With Changing Columns

Sep 21, 2010

I have a stored procedure that returns a dataset with a different number of columns and different column names depending on user input. How can I use this with a GridView? Normally I define the columns beforehand in a static fashion, but, have never done a dynamic dataset like this.

View 1 Replies

Forms Data Controls :: Styling Columns In GridView From Stored Procedure?

Feb 16, 2010

Im loading some results from a SQL Stored procedure into a Grid View. From my stored procedure I simply get 2 columns returned, Details and Savings, the savings are being returned in the format 30.50123 I want to limit this to 2 decimal places and put a euro sign in front of it like so €30.50, I have managed to do this however its adding a new "savings"column to my Grid view which I obviously don't want. So I now have a savings column with the correct format of €30.50 and my 2 columns from my stored procedure

details and savings. Heres my code....

[Code]...

View 2 Replies

Forms Data Controls :: Call A Stored Procedure And Display In Gridview?

Feb 23, 2011

how to call a stored procedure and to display it in a grid view table..

View 3 Replies

Forms Data Controls :: Updating Row In GridView To Database Through Stored Procedure

Feb 8, 2011

I have an app where i have a GridView connected to a DropdownList....The selectedIndexChange determines what the gridview shows. Then have coded in the row editing event the ability to change the information in the row. MY ISSUE- cant take the new information changed in the row and update it in the database. I have a row updating event that im trying to figure out how to attach it to my stored proc and the newly edited row

View 12 Replies

Forms Data Controls :: Delete Records From A Gridview Using A Stored Procedure?

Oct 28, 2010

I need to be able to delete records from a gridview using a stored procedure. My data comes from two sources so the standard delete won't work. I have come up with the code below which deletes a record, but the wrong one. How can I iterate through the rows to delete the row I actually want to delete.

[Code]....

View 7 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved