473,763 Members | 2,375 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

2.0 : config GridView to use SPs ?

It looks like MS wants you to use config a SQLDataSource , hand coding the
SELECT, INSERT, UPDATE, DELETE SQL , and then assigning
GridView.DataSo urceID = SQLDataSource ...

But what if you prefer to encapsulate all your DML in SPs ? Is it possible
to config the SQLDataSource with SPs ? If not, is there an alternative to
MS's preferred method for config'ing a GridView ?
Feb 15 '06 #1
5 1434
I usually write a BLL which calls the sprocs from public methods and then
use the ObjectDataSourc e pointing to the BLL.

--
Jeff Lynch
"Ramblings From A [Microsoft] Connected Universe"
http://codebetter.com/blogs/jeff.lynch
"John A Grandy" <johnagrandy-at-yahoo-dot-com> wrote in message
news:O4******** ******@TK2MSFTN GP10.phx.gbl...
It looks like MS wants you to use config a SQLDataSource , hand coding the
SELECT, INSERT, UPDATE, DELETE SQL , and then assigning
GridView.DataSo urceID = SQLDataSource ...

But what if you prefer to encapsulate all your DML in SPs ? Is it
possible to config the SQLDataSource with SPs ? If not, is there an
alternative to MS's preferred method for config'ing a GridView ?

Feb 15 '06 #2
Hi Jeff.

I'm too sleepy .... what's a BLL ?

Thanks.
"Jeff Lynch" <je********@new sgroup.nospam> wrote in message
news:On******** *****@tk2msftng p13.phx.gbl...
I usually write a BLL which calls the sprocs from public methods and then
use the ObjectDataSourc e pointing to the BLL.

--
Jeff Lynch
"Ramblings From A [Microsoft] Connected Universe"
http://codebetter.com/blogs/jeff.lynch
"John A Grandy" <johnagrandy-at-yahoo-dot-com> wrote in message
news:O4******** ******@TK2MSFTN GP10.phx.gbl...
It looks like MS wants you to use config a SQLDataSource , hand coding
the SELECT, INSERT, UPDATE, DELETE SQL , and then assigning
GridView.DataSo urceID = SQLDataSource ...

But what if you prefer to encapsulate all your DML in SPs ? Is it
possible to config the SQLDataSource with SPs ? If not, is there an
alternative to MS's preferred method for config'ing a GridView ?


Feb 15 '06 #3

The BLL is the "BusinessLogicL ayer".

You need to use:
ObjectDataSourc e

and then create something like a custom collection

MyEmpCollection : CollectionBase

Where.. you will put Emp objects inside of your MyEmpCollection

...
If you don't know how to create CollectionBase ('s), then check
http://spaces.msn.com/sholliday/ 9/21/2005 entry

You can ingore the XmlSerializer stuff, and just get the CollectionBase
stuff.


"John A Grandy" <johnagrandy-at-yahoo-dot-com> wrote in message
news:O4******** ******@TK2MSFTN GP10.phx.gbl...
It looks like MS wants you to use config a SQLDataSource , hand coding the
SELECT, INSERT, UPDATE, DELETE SQL , and then assigning
GridView.DataSo urceID = SQLDataSource ...

But what if you prefer to encapsulate all your DML in SPs ? Is it possible to config the SQLDataSource with SPs ? If not, is there an alternative to
MS's preferred method for config'ing a GridView ?

Feb 15 '06 #4
Normally I'd do that ... because I'm a OO , multi-tier guy ...

..... but I'm just trying to test out this DataView control to see if it's
worth using. The provided wizards should work against simple table with
simple select,insert,u pdate,delete sps .... shouldn't they ?

Or is this another "botched wizard" from MS ?

"sloan" <sl***@ipass.ne t> wrote in message
news:eK******** ******@TK2MSFTN GP11.phx.gbl...

The BLL is the "BusinessLogicL ayer".

You need to use:
ObjectDataSourc e

and then create something like a custom collection

MyEmpCollection : CollectionBase

Where.. you will put Emp objects inside of your MyEmpCollection

..
If you don't know how to create CollectionBase ('s), then check
http://spaces.msn.com/sholliday/ 9/21/2005 entry

You can ingore the XmlSerializer stuff, and just get the CollectionBase
stuff.


"John A Grandy" <johnagrandy-at-yahoo-dot-com> wrote in message
news:O4******** ******@TK2MSFTN GP10.phx.gbl...
It looks like MS wants you to use config a SQLDataSource , hand coding
the
SELECT, INSERT, UPDATE, DELETE SQL , and then assigning
GridView.DataSo urceID = SQLDataSource ...

But what if you prefer to encapsulate all your DML in SPs ? Is it

possible
to config the SQLDataSource with SPs ? If not, is there an alternative
to
MS's preferred method for config'ing a GridView ?


Feb 15 '06 #5
Its another botched component, I have been able to do just about everything
(edit, update and delete) but can not get the insert figured out.

I would like to use the footer to hold the input row, that part is easy, and
use an image button/link to implement the insert. well unless I create a an
onclick postback routine on the insert image, it does not work. When i am
able to get it to work the resulting refresh of data does not reflect the
newlly added row or the deleted row in the event of a delete.

"John A Grandy" <johnagrandy-at-yahoo-dot-com> wrote in message
news:u2******** ******@TK2MSFTN GP10.phx.gbl...
Normally I'd do that ... because I'm a OO , multi-tier guy ...

.... but I'm just trying to test out this DataView control to see if it's
worth using. The provided wizards should work against simple table with
simple select,insert,u pdate,delete sps .... shouldn't they ?

Or is this another "botched wizard" from MS ?

"sloan" <sl***@ipass.ne t> wrote in message
news:eK******** ******@TK2MSFTN GP11.phx.gbl...

The BLL is the "BusinessLogicL ayer".

You need to use:
ObjectDataSourc e

and then create something like a custom collection

MyEmpCollection : CollectionBase

Where.. you will put Emp objects inside of your MyEmpCollection

..
If you don't know how to create CollectionBase ('s), then check
http://spaces.msn.com/sholliday/ 9/21/2005 entry

You can ingore the XmlSerializer stuff, and just get the CollectionBase
stuff.


"John A Grandy" <johnagrandy-at-yahoo-dot-com> wrote in message
news:O4******** ******@TK2MSFTN GP10.phx.gbl...
It looks like MS wants you to use config a SQLDataSource , hand coding
the
SELECT, INSERT, UPDATE, DELETE SQL , and then assigning
GridView.DataSo urceID = SQLDataSource ...

But what if you prefer to encapsulate all your DML in SPs ? Is it

possible
to config the SQLDataSource with SPs ? If not, is there an alternative
to
MS's preferred method for config'ing a GridView ?



Feb 20 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
5677
by: theKirk | last post by:
using Visual Studio 2005 C# ASP.NET I know there has to be a simple way to do this....I want to use C# in a code behind for aspx. Populate a GridView from an xml file Add Fields to the GridView to allow entry of quantity and Y/N switch for
6
3040
by: Nalaka | last post by:
Hi, I have a gridView (grid1), which as a templateColumn. In the template column, I have put in a gridView (grid2) and a ObjectDataSource (objectDataSource2). Question is... How to I pass the current_row_key of Grid1... to the objectDataSource2 parameter? (so that the second grid, gets only the information to do with current row of grid1)
0
2571
by: Giorgio | last post by:
It seems that the ASP.NET Microsoft team didn't think about this!! The profilemanager class has the following methods: - DeleteInactiveProfiles. Enables you to delete all profiles older than a specified date. - DeleteProfile. Enables you to delete a profile associated with a
5
4837
by: Dick | last post by:
I have a GridView bound to an ObjectDataSource. I have a Button that calls GridView.DataBind. I want the row that is selected before the DataBind to still be selected afterwards. This happens automatically if the data doesn't change. But if records have been added or deleted then it looks as if some code is necessary: I've done this by using GridView.SelectedValue to get the key value of the currently selected Row and then by itterating...
1
1771
by: John A Grandy | last post by:
I'm not using SqlDataSource or ObjectDataSource. I'm handling events , similar to approach commonly used in 1.1. DataGrid. My question is : How do I configure a GridView's edit mode row format ? Here is my aspx : <asp:GridView ID="gvTasks" runat="server" AllowSorting="true" BackColor="Aqua"
3
2334
by: Jim Andersen | last post by:
Hi, I would appreciate if someone could explain this behaviour, and maybe offer a better solution. I have been working with the GridView control. And SqlDataSource. It works great if I do: <asp:SqlDataSource ConnectionString="yada yada yada" etc etc />. I can hook up a GridView to the sqldatasource and view/edit/add records.
2
13200
by: antonyliu2002 | last post by:
I've been googling for some time, and could not find the solution to this problem. I am testing the paging feature of gridview. I have a very simple web form on which the user can select a few fields to be included in the table, which is to be bound to the gridview. The web form looks like so (Don't worry about the stupidity of this web form for now.):
0
1000
by: =?Utf-8?B?UGhpbGlw?= | last post by:
I am referencing external controls defined in web.config system.web/pages/controls... illustrated as follows... <pages validateRequest="false" enableViewStateMac="true" enableEventValidation="false"> <controls> <add tagPrefix="slcms" namespace="SLCMS.CustomControls.GridView" assembly="SLCMS"/> <add tagPrefix="slcms" namespace="SLCMS.CustomControls.WaitScreen"
3
5244
by: Peter | last post by:
I have a GridView which is populated by List<ofObjects> Does anyone have example of how to sort the columns of this GridView? I have found examples without DataSourceControl but these use DataTable, I am using List of Objects. Here's one example: http://ryanolshan.com/technology/gridview-without-datasourcecontrol-datasource/
0
9563
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10145
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9998
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9938
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9822
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8822
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7366
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5270
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
3
2793
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.