Using Business Object Dataset Adapter; Works On PC Not On Server?

Jun 26, 2010

I am a new to ASP. Very experienced in MS Access... Logical move to ASP.

Problem:

When designing my first .aspx on PC and testing via localhost; all is well.

When move to server I get this error msg:

"The type specified in the TypeName property of ObjectDataSource 'ObjectDataSource2222' could not be found."

I have been reading for a solution for the past three days.

My reading tells me that there should be a reference somewhere in the web config file to id the business object dataset , but do not see any. No luck in surfing for a tip either.

I thought Visual Studio 2010 was a rapid app that allow one to design and test on PC and move easily to server for production. I am I expecting to much.

View 1 Replies


Similar Messages:

Can Fill Dataset Using Adapter And Providing Min And Max Record Limit

May 1, 2010

to get limited records using this method? i.e. by filling dataset using adapter and providing min and max record limit?I wish to do custom pagination using this method.

View 6 Replies

DataSource Controls :: Get Single Row From Strongly Typed Dataset Table Data Adapter

Jun 27, 2010

how can i get a single row from strongly typed dataset table data adapter in c#?

View 2 Replies

Forms Data Controls :: DataBinding To Business Object And Retrieving That Object Later?

Jun 17, 2010

Again, I am new to the ASP.NET world, and I come from a Windows Forms background. I'm working with an ObjectDataSource that retrieves a collection of business objects. With the collection, I am going to be binding it to a CheckBoxList and other various controls. The business object that I am using is an Employee.

To get all of the employees, I create an ObjectDataSource and set the "Select" method. I then set the DataSourceID of the CheckBoxList to be that of the ObjectDataSource. When I load the page for the first time, I see all of the employees. Now, the user goes through this page and selects all the employees they want to see information about (by checking the box next to the employee name). Finally, the user hits the button called "Display." Upon postback how do I get a list of those employees? I've tried the following solution, but I'm not sure if it's the best practice in obtaining all those employees again. Here's my solution...

In the CheckBoxList, I set the DataTextField to the Employee's name. I also set the CheckBoxList's DataValueField. This property is a little different. I set this to be a UNIQUE IDENTIFIER, which can distinguish this employee from other employees. Now, when the user hits the button "Display" I use my ObjectDataSource again and MANUALLY call ObjectDataSource.Select(). I cast the returned value as a List<Employee>. Finally, I iterate through all list items in the CheckBoxList...

[Code]....

If the item is selected, I parse through my list of employees that was returned from the bjectDataSource.Select(). I use the item.Value and compare it to each employee's "key." If the key is found, I know that the employee is selected. I put this employee in another list called EmployeesSelected.

Finally, I take EmployeesSelected (which is a List) and set my GridView's .DataSource and call .DataBind() on the GridView.

Is this the "best practice" of re-obtaining the Employees that are selected on my page, or am I making this too complicated?

View 1 Replies

Web Forms :: Returns Object Reference Not Set To An Instance Of The Object Because Of Empty Dataset

Aug 27, 2010

private void FillDetails(string pId, out string Name, out string Address)

[code]....

I have method called Filldetails(),This method uses stored procedure to retrieve information for product name and address based on productid passed from productdetails table.I am working on globalization project.We have this product information for US country but there is no product information for germany country.So dataset is empty for germany.As result I am getting error object reference not set to an instance of the object.

View 3 Replies

Initial Value Of Int Property Of A Business Object?

May 30, 2010

I have a business object that looks like this:

[Code]....

What is the value of SomeId after I create an instance of my object? I was testing it with SomeId == 0 but it wasn't working. Then I tried null which gives me an error.

What is the right way to handle this? Am I to assign an initial value to my objects' properties in the object? If not, how do check if my object has any values assigned to its properties -- in particular, int values?

View 8 Replies

Difference Between DTO & Dumb Business Object ?

Jul 7, 2010

I just have a need where I have to select only selected attributes/fields of a very large business object. I ended up designing a DTO and a collection class for that DTO. Few questions.Is there any difference between a DTO and a dumb business object ? I filled the DTO inside the DAL and loaded it inside a DTO list and now returning to Business Logic layer but it seems its the same like dumb business objects to me (with only less attributes)

View 3 Replies

Automatically Generate Business Object Class?

Jan 7, 2011

I create a database with more than 10 tables, how can I automatically generate business object class inside asp.net C# project?

I hope that one expert can give me steps for how to do that?

View 3 Replies

Passing Business Object Structure To UserControl?

Feb 17, 2010

How do it do this. I have this at the moment

[Code]....

[Code]....

This takes a large INT and returns 4 strings from the BO structure HotelFacilities

If I set the private from string to AccommodationBO.HotelFacilities it is fine

If I set the public from string to AccommodationBO.HotelFacilities it moans because the Set section of the private property is wrong. But the set would be an INt.

All I actually want to do, is populate the BO Structure and passit to the user control using a property in the user control code behind. Is this possible ??

Dim jim As New GetAccommodationPricesBLL

View 1 Replies

Transfer ViewModel Properties To Business Object?

Apr 22, 2010

I am using ASP.NET MVC 2.0 and I want to transfer my ViewModel properties to business object. I can do this manually or use AutoMapper or use new method available in ASP.NET MVC 2.0. My question is that does anyone know the name of the new method which allows to copy the properties from one object to another?

View 1 Replies

C# - Get Business Object Back From Grid View?

Jun 22, 2010

What exactly is the e.Row.DataItem return.. MSDN says.. returns An Object that represents the underlying data object to which the GridViewRow object is bound.

Here is my DataGrid...

<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" DataSourceID="ObjectDataSource1" OnRowDataBound="GridView1_RowDataBound">
<Columns>
<asp:BoundField DataField="PracticeCode" HeaderText="PracticeCode"

[Code]....

Note : There could be other ways to accomplish this, but I'm looking especially why my p1 is null... and is there any way to get the Patient Object back from GridView after binding.

View 1 Replies

C# - Binding An Rdlc Report With A Business Object?

Oct 26, 2010

Is it possible to bind a rdlc report to a business object (.NET 4/VS 2010)In my report I have TextBoxes called Name and Email.Say I have an object Person with properties Name and Email.Can I bind the .rdlc with an object Person at runtime?

View 1 Replies

Architecture :: Insert Data With Business Object?

May 29, 2010

I do not know how to create a business object for inserting data into the database.

View 2 Replies

Forms Data Controls :: Detailsview Row Update / Creating Dataset, Getting Data From Sql With Adaptor And Filling Into Dataset Object

Dec 21, 2010

I have a detailsview, template as follows:

[Code]....

Codebehind: creating dataset, getting data from sql with adaptor and filling into dataset object, then setting detailsview's datasource.
I add 2 button to above template to able to edit data at asp page, and added event handlers:buttons:

[Code]....

My question is, what to do inside the detailsview update event function to able to edit and update data. My method can be wrong too.

View 7 Replies

SQL Server :: Select Scope_Identity() Within BLL Table Adapter?

Jul 18, 2010

I am trying to add "Select Scope_Identity()" to my table adapter but vs2010 respond with "Unable to parse query text." error message.

Code for Insert SQL is -

INSERT INTO orders
(creditAutorizarionNumber, OrderName, OrderPersonPhone, OrderPersonEmail)
VALUES (@creditAutorizarionNumber,@OrderName,@OrderPersonPhone,@OrderPersonEmail)

I tried to add -

;Select Scope_Identity()

How can I use the Scope_Identity() withing a BLL table adapter ?

View 2 Replies

How To Inject An Object Living In The Session Into Business Class

Feb 15, 2010

I have a profile object in session with profile information for the currently logged in user. I wand to be able to inject it into my business classes so I can do validation etc in them without having to pass it in the parameter list in every method.

I have tried something like this in my ninject module:

Profile profile = HttpContext.Current.Session["Profile"] as Profile;
Bind<Profile>().ToConstant(profile).InTransientScope();

However it blows up with null reference when I do Kernel.Get() in my aspx. The BusinessObject takes a profile via the constructor. If I hard code the profile instead of using the HttpContext then everything seems to work. Not sure if ToConstant is the way to go, I am really looking for something that will get evaluated every time a new BusinessObject is created.

UPDATE

It seems that asking for injection to happen on a page level object inline is too soon for the session collection to be available. If I move in the Kernel.Get call to Page_Load it works just fine.

View 4 Replies

DataSource Controls :: Choose Business Object Empty

Feb 17, 2010

I've created my dataset in my App_Code folder. I tested it so it works, But then when I add in my page an ObjectDataSource, it can find any object the list is empty. I looked for online some solution but I didn't find something which worked. It works when I add the code manually, but i would like to understand how come, which part I misunderstood.

[Code]....

View 6 Replies

WCF / ASMX :: VS 2008 - Consuming A Web Service As A Business Object

Jun 30, 2010

I'm fairly new to .NET development so I might be missing something very simple here. I'm trying to set up a web service as a data item so that I can bind it to a control on my page. I was reading some tutorials about doing this in an earlier version which seemed very simple. All you had to do was add the web reference, create a data source and use the object type, pick the web service and enter the name of the call that would retrieve the data.

In 2008 the object data source type doesn't seem to be available anymore when creating a new item unde app_data. I get options for SQL Server, XML and XML schema. I've tried adding an existing source and picking each of the files generated for my web service reference, with no success. I suspect that I have to use one of the XML options, though at this point my web service is a simple thing that only returns some strings for prototyping purposes (I'm not the one writing the web service, just the front ends. Our other developer hasn't come up with a stub service yet). I know there must be some way to set a web service up as a business object so that you can bind it to a control like a gridview.

View 2 Replies

Architecture :: Business Object Design In Master Details?

Aug 19, 2010

I have the following scenario,There is a master business object containing 40 fields2 separate child business objectsIf I update a child record, I have to update master's 'Last modify by' status along with 3 or more fields in masterFor this purpose, I don't want to initialize a separate Master class object (as most of the fields are unused/wasted)The 'last modify by' also gets updated if the records in master get updated themselvesCurrently I have separate business objects for master table, Child 1, Child 2 etc.

How do I control this in my business object design ? Do I break up my master object ? Say I extract last 'modify by ' into a new class, through inheritance or some other way ?Is there a way that whenever child gets updated I use a 'small' class to update Master status only and whenever the master itself gets updated I do the same.Problem is that I am having redundancy in my small class (Master class also contains 'Last Modify By ',

View 5 Replies

DataSource Controls :: On DB Change Want To Call Business Object?

Feb 27, 2010

I want to call my business object class in which I have written my logic when any database status field change, what is the best way we can do, I want notification facility also.

I can do this window service. But there is any best way to acheive this like Notification and call my business object.

View 1 Replies

Create Table From A Business Object With Conditional Layout?

Apr 16, 2010

I need to generate a table from a List(Of Students). My Student class has properties for AcademicYear, TeachingSet, Surname and Forenames, is sorted in that order and also properties for ID and start date. The table should nest TeachingSets within AcademicYears and then the students within the TeachingSets, as shown in the table I've mocked up at http://www.ifslearning.ac.uk/files/student-table.jpg

Using a repeater I get
08-10 students B74394 Mzejb Bsppn
08-10 students B74395 Lbuifsjof Bvti
08-10 students C68924 Epoob Cmpblf
08-10 students D41468 Ipxbse Dbwfz

But I need to have

08-10 students
- B74394 Mzejb Bsppn
- B74395 Lbuifsjof Bvti
- C68924 Epoob Cmpblf
- D41468 Ipxbse Dbwfz

View 1 Replies

Pass Key Of Grid To Business Class Via Object Data Source?

Sep 15, 2010

In ASP.NET Webforms have an ASP.NET GridView connected to a C# class via an object data source

I have an ID set up as a DataKeyName in the grid. How do I pass this to the C# class when I update the grid?

View 15 Replies

Web Forms :: ListBox Selected Item Costing To Business Object

Nov 7, 2010

I want to cast back my ListBox Item into my Business Object. Following is the code. ListBox Populate Code on Page Load...

if (!Page.IsPostBack)
{
SalesDBEntities ctx = new SalesDBEntities();
this.ListBox1.DataSource = ctx.SalesHistories;
this.ListBox1.DataTextField = "Product";
this.ListBox1.DataValueField = "SaleID";
this.ListBox1.DataBind();
}

And here is

protected void ListBox1_SelectedIndexChanged(object sender, EventArgs e)
{
SalesHistory sh = new SalesHistory();
//sh = (SalesHistory)ListBox1.SelectedValue; Error Here. How it is possible
TextBox1.Text = ListBox1.SelectedValue.ToString();
}

View 4 Replies

C# - Update Only 1 Field Of A Big Business Object Inside A Transaction (Best Approach)?

Aug 19, 2010

I am in a situation where I have to perform a transaction master detail record (Drop prev details, insert new details, Update Master status) Master Business Object has 20 fields Details Business Object has 4 fields only. Now I have to update only 1 field in master table and 4 fields in details table for insert.

If I initialize a new master object, 19 fields are being wasted for a simple update. What do I do to efficiently handle this situation? Can I make a new object and inherit only one field from my master business object?

View 2 Replies

Fill Business Object From Database By Calling Stored Procedures?

Jun 10, 2010

I have several stored procedures in my database, some of them have params, some have no params. I tried to fill a business object by calling the stored procedures, but failed so far. How could I do that dynamically? Later, I want to use this object as a datasource for a report...but thats the next step. The important facts are:

different stored procs return different amount of columns stored procs can have params, but its not required

View 1 Replies







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