.NET Framework - Integrating BLL Validation with ObjectDataSource and Gridview
Asked By JimLad
26-Jan-10 10:53 AM

Hi,
ASP.NET 3.5
I have recently been struggling with BLL Validation and when and where I
should do it.
I have a Gridview using an ObjectDataSource. This is a standard thing
that I will be doing on loads of pages and I will be creating a
template
for this.
Obviously I can validate in the Gridview_Updating event. However,
nothing is typed at this point so I would have to type everything
manually. Values are typed in ObjectDataSource_Updating, but by then
I have lost the e.cancel function and would have to raise an exception
to cancel.
Returning to Gridview_Updating I can pass the typed values I need
individually or I can pass the IOrderDictionary of values, newvalues
or keys. However these are untyped and I would have to them type them
in the BLL layer so I have rejected this option.
Or I can Validate in the BLL layer in the Update function (called by
UpdateMethod of the ObjectDataSource). I have a Generic List of
validation failures to return and I also want to keep
the entered values on the page, not refresh the page if there are
validation problems. The only way to prevent the page from refreshing
seems to be to return an exception to GridView_Updated. I could
create
a new Exception which contains the Validation Error Generic List. But
I have always thought that Exceptions should not be raised for
standard functionality like this?
Basically I want to limit bespoke validation functionality to the BLL
layer and not have to do manual typing on the UI layer. But I cannot
seem to find a way of doing that without raising exceptions.
Any advice would be very welcome. If these are the only 2 options,
which should I do? I realise it would take very little effort to type
values manually on the UI side for each page, but I always like to
standardise code where possible.
James
GridView
(1)
ASP.NET
(1)
Validation
(1)
ObjectDataSource
(1)
IOrderDictionary
(1)
Validate
(1)
Update
(1)
UpdateMethod
(1)
Alvin Bruney - ASP.NET MVP replied to JimLad

The problem is with the design, objectdatasource is not a Business layer.
it is a provider that knows how to talk to the data store. If you had a true
business layer, it would sit in between the gridview and the datasource. At
that point, your problems would go away.
This is the absolute correct way to do this - use the exception mechanism,
which represents a failed validation. This is a best practice. [This is also
how dynamic data works with the entity model so you should pattern against
this approach]. The idea is that if the user enters incorrect input, the
Business layer should blow up and stop right there. An exception represents
just that.
No real good solution for the typing problem because of the tight coupling
between the gridview and the objectdatasource container. you may have to get
clever with some of the events that are exposed in the gridview and
objectdatasource. Btw, binding a gridview to an objectdatasource is often
done because it is easy for trivial situations. You start running into
issues when the software you are building gets complicated.
--
Vapordan
Shameless Author Plug
ASP.NET 4 by Example only $20
OWC Blackbook www.lulu.com/owc
scid = 3Dkb;en-us;Q315158 But the problem is that 99% of these are for ASP .NET 1.x and this is .NET 2.x which I just installed to try and and making the transition to linux myself. Framework versions mixup maybe? Did you check the ASP.NET tab page on the site properties and made sure it is set to the right the proper extensions are enabled? If nothing else works, try re-registering 2.0 for asp.net (aspnet_regiis.exe) Calm down, 2.0 is way better than 1.1 and it is scid = kb;en-us;Q315158 But the problem is that 99% of these are for ASP .NET 1.x and this is .NET 2.x which I just installed to try and
the & to reference text variables. Notice the location of the quote marks. Juan T. Llibre, asp.net MVP asp.net faq : http: / / asp.net.do / faq / foros de asp.net, en español : http: / / asp.net.do / foros / = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 7> Check1.Text & "." & vbCrLf & vbCrLf & _ Hi Juan
this error to occur What does the application event log entry state ? Juan T. Llibre, asp.net MVP asp.net faq : http: / / asp.net.do / faq / foros de asp.net, en español : http: / / asp.net.do / foros / = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = Warning message: Event Type: Warning Event Source: ASP
NET Framework Date formats, culture and globalization Hi, ASP.NET 3.5 We are creating a 3-tier ASP.NET Web Application that needs just to understand dates as UK shortdate format (dd / MM / yyyy them separately? One thing I am sure about is that I want to isolate the ASP.NET app from the culture settings on the web server and the client machine. Cheers, James shown in UK format. You will not need to bother about format in <%# Bind(. . .)%> statement. ASP.NET uses web application settings from the web.config file. It does not rely on client