ObjectDataSource control acts as a data interface for databound controls for such controls as: GridView, Repeater, FormView and DetailsView.

learn more… | top users | synonyms

0
votes
1answer
50 views

ASP.NET ObjectDataSource could not find a non-generic method that has parameters

I am using a FormView control on an ASP.Net page with an ObjectDataSource that is linked to a Business Tier component connected to stored procedures in the SQL Server. I am getting the ...
0
votes
2answers
53 views

OutOfMemoryException Binding ObjectDataSource to GridView

I'm trying to use a GridView to show a table pulled from a SQL Server. It is a log of events. I've placed the GridView control on my page along with an ObjectDataSource control. I've configured the : ...
0
votes
0answers
14 views

DataTable as ObjectDataSource: created onInit, but suddently becomess null again

I am using the following chan: RadGrid data-bound to an ObjectDataSource whose SelectMethod returns DataTable. I do the following: Declare in my page DataTable variable: private DataTable ...
0
votes
1answer
29 views

ObjectDataSource SelectMethod

I'm trying to call a function using the SelectMethod of an ObjectDataSource. <asp:ObjectDataSource runat="server" ID="odsDocuments" TypeName="ClassA" ...
0
votes
4answers
64 views

ASP.NET C# - Data binding on a object attribute that is within another object

I'm having an hard time trying to bind an attribute within a DetailsView EditTemplateField. Here goes my data structure: Class1{ public int idClass { get; set; } public Class2 classObject { get; set; ...
0
votes
1answer
32 views

ASP.NET Webforms - JQGrid Populate Data with ObjectDataSource (Object in Object)

Here's my try about JQGrid : <JQ:JQGridColumn DataField="ID" PrimaryKey="true" DataType="int" HeaderText="NO" ...
0
votes
2answers
53 views

Implementing custom paging logic in BLL (not in stored procedures) for ObjectDataSource

So I've implemented objectDataSource custom paging in the DAL using stored proceedures like all the guides and tutorials describe, but I'm realizing that by putting your custom paging logic at the ...
0
votes
0answers
18 views

What Code do I add to the Gridview Code behind file to update the data based on the selected dropdownlist value

I have a gridview and a dropdownlist populated with an ObjectDataSource. The code for the page's code behind file for an Entity Data Source would look like this for example: Movie myMovie = ...
0
votes
0answers
22 views

How to do Data Source Paging with Caching Filtering enabled?

I have an ObjectDataSource with Caching enabled. I perform the Select on ALL RECORDS of the table, and after that I use Filtering to display a subset. <asp:ObjectDataSource ID="ODSData" ...
1
vote
1answer
43 views

asp.net objectdatasource cannot find method

I have a datalist which using objectdatasource.Objectdatasource using business layer. dataworks.cs public static List<Yorum> SerchYorumlariGetir(string tag) { List<Yorum> ...
0
votes
1answer
14 views

Public Property as ObjectDataSource Select Parameter

I have an ODS, which is bound to an ADO.NET datatable. There is one select parameter. I would like to use a public property which I have declared in my code-behind as the select parameter, something ...
0
votes
1answer
33 views

Insert from ObjectDataSource with business layer objects (without forms)

Here is my markup: <div class="postit"> <ul> <li> <asp:Label ID="lblPostBaslik" runat="server" Text="Baslik :" ...
0
votes
0answers
44 views

Adding Linq-to-Sql class breaks simple ASP.NET web application

Using VS2012, latest SP/update applied. I have been very frustrated trying to get an ObjectDataSource to work. See http://bit.ly/XTpdvN and http://bit.ly/XTpsHi. I started a new Web Application ...
2
votes
1answer
408 views

GridView with ObjectDataSource Show Footer on Empty Data

There is no ShowFooterWhenEmpty property in GridView ;( When I didn't use ObjectDataSource for data binding it was as simple as: ... SqlDataAdapter adapter = new SqlDataAdapter(cmd); ...
0
votes
1answer
101 views

.NET GridView Updating, e.OldValues is empty

I am using AJAX TabContainer and have an asp GridView in each tab which is bound to an ObjectDataSource. The ObjectDataSource returns different objects based on the tab selected (TabContainer ...
1
vote
0answers
45 views

How can I set ObjectDataSourceStatusEventArgs in service or data access layer?

I'm using an ObjectDataSource to perform the CRUD operations on a GridView. When an item is being removed, I want to be able to make sure no foreign key constraints are being violated, and if so, ...
0
votes
0answers
40 views

ObjectDataSource sets MaximumRowsParameterName= -1

I have a GridView and an ObjectDataSource <asp:ObjectDataSource ID="ObjectDataSource1" runat="server" TypeName="myType" SelectMethod="FindByName" MaximumRowsParameterName="NumRows" ...
0
votes
0answers
54 views

ObjectDatasource Update Method - with Generic object parameter which contains sub object is not working

Entities public class Calculation { public int UniqueID { get; set; } public int Value1 { get; set; } public int Value2 { get; set; } public int Result { get; set; } public ...
0
votes
1answer
70 views

Custom update gridview and ObjectDataSource

I have a gridview displaying data by using an Obejct Data Source which is then connected to a Business Layer. The data shown/retrieved is from two tables with a join. Is it possible to have a custom ...
0
votes
1answer
87 views

Using Ninject with objectdatasource in asp.net webforms?

I am trying to use Ninject 3 in my asp.net webforms application. It works fine except some pages that contains ObjectDataSource, the Select method of the ObjectDataSource throws a ...
0
votes
1answer
215 views

Using EF5 Linq to Entities as DAL to BLL to ObjectDataSource

I am struggling with Linq to Entites. I am new to EF5 and Linq. I am programming in VB.NET. I have been using Table Adapters that return DataSets as the DAL into a BLL that I then linked to ...
0
votes
0answers
30 views

asp GeneratedImage Control from Business Class

first time on this board so.. I am using asp.net GeneratedImage Control Microsoft.Web.GeneratedImage.dll 1. I have a ListView nicely formatted with data coming from SQL to populate class object using ...
1
vote
3answers
136 views

How to get Calling Gridview name in ObjectDataSource Selecting event

I have 2 gridviews, gv1 and gv2 and an ObjectDataSource with the id ods1. Both the griedviews are pointing to DataSourceID="ods1". My question is, how do I know in selecting event of an ...
0
votes
1answer
53 views

ObjectDataSource/Grid - Dynamic columns

I have a requirement for an ASP.NET screen that will show a list of products, and to the right will be columns for each 'Wholesaler' in the system, with their price for each item as the item in each ...
1
vote
1answer
45 views

Is the ObjectDataSource a good choice for professional (n-layer) applications?

I am asking this as there are many ways of populating a data control (like GridView and FormsView) and it can get overwhelming for a new developer. What's the best approach? Should data source ...
1
vote
1answer
53 views

ASP.net ObjectSource Parameter

I have an ObjectDataSource with a parameter from a query string. I'm getting the following error:Value was either too large or too small for an Int32.I believe the query string might be too long for ...
1
vote
1answer
33 views

order gridview list decending

I currently have a table of data which is ordered in ID order, but i want the list to be ordered in descending order. This i am sure is a simple question but i just can not figure out how to do it. ...
0
votes
1answer
47 views

ObjectDataSource Update expects individual fields as parameters not class

I'm trying to use an ObjectDataSource bound to a Telerik RadGrid to perform automatic Select, Insert, Update and Delete. The OnSelecting method of the ODS refers to a method that is a member of ...
1
vote
1answer
262 views

FormView dynamic templates does not send form values on insert/updates

I am getting following error when I click Insert button on a dynamically loaded templates for FormView. The default form mode is set to insert. I do see insert template loading fine. I have ...
0
votes
0answers
94 views

ObjectDataSource 'myOBS' could not find a non-generic method

I'm just starting to use Data Adapters, and I ran into a tiny problem. The next error is thrown: ObjectDataSource 'obsUsers' could not find a non-generic method 'GetGeneralData' that has parameters: ...
0
votes
0answers
86 views

ObjectDataSource RemoveByID not working, issue with DataKeyNames?

Using ASP.NET/C#/nHibernate architecture - I have a GridView with an ObjectDataSource and am having problems getting the delete method to work. When I simply use the Remove(T entity) function ...
0
votes
1answer
135 views

“not-null property references a null or transient value” when deleting an object

Using ASP.NET/C#/fluent Hibernate architecture, I am trying to use a GridView and ObjectDataSource to manage my business objects. I have a main class Project with a one-to-many relationship with OIC ...
0
votes
1answer
73 views

how to return error from ObjectDataSource?

I use an objectDataStore to insert the records from a form. But when inserting into the database, I might get an error. If I get an error, I want to show it in a field. But how do I return some data ...
0
votes
0answers
43 views

Activate select function from objectdatasource when a button is clicked

I have a gridview (gvCategories) connected to an objectdatasource (odsCategories) which has the following method: public List<CategoryClass> getList(string searchCriteria, int skip, int take, ...
1
vote
0answers
110 views

Select Method with ControlParameter defaultvalue property behavior

I'm using an objectdatasource with my gridview, the ODS's SelectMethod is working but not the way I want, I'm sure it's something to do with the DefaultValue property but I've already tried to set it ...
1
vote
2answers
248 views

Inserting into ObjectDataSource with an object

I am attempting to learn ASP.NET and want to use an ObjectDataSource to select and insert into a database. I am using a business class that has an insert method that has an object as its parameter. ...
2
votes
3answers
175 views

ObjectDataSource connection

I'm trying to work through Pluralsights ASP.NET Webforms (c#) demos and cannot figure out why my class in my app_code folder will not show in my ObjectDataSource dropdown list when trying to create a ...
0
votes
1answer
272 views

Using a list in my ObjectDataSource on my report for the DataSource of a Telerik Chart in report

Hey there I'm trying to use a list (Loans) within my ObjectDataSource (objectDataSource1) object on a report, as the DataSource for my Telerik chart on the same report. The majority of the tutorials I ...
1
vote
0answers
512 views

ASP.Net GridView strange edit behaviour with paging

I have an ObjectDataSource <asp:ObjectDataSource SelectCountMethod="GetCount" EnablePaging="true" SortParameterName="sortExpression" ID="customersDS" runat="server" SelectMethod="GetList" ...
0
votes
1answer
102 views

Using GridView and ObjectDataSource with generics

I'm designing an in-house enterprise application to manage small business loans using ASP.NET (C#), nHibernate, and an SQL Server in the back. From much of the reading I've done, it seems to be ...
0
votes
1answer
229 views

Empty parameters when using FormView to update ObjectDataSource w/ Telerik RadPanelBar

The Problem: An ObjectDataSource is sending over a (basically) empty data object when calling the update method by means of a FormView. The only fields with values are fields listed in the FormView's ...
1
vote
1answer
832 views

The type specified in the TypeName property of ObjectDataSource 'ObjectDataSource1' could not be found

Im using VS2008 with .Net Framework 3.5, i have created a site from File->New->Web Site, I added a Master Page and Default content page. I added objects DetailsView and ObjectDataSource. To populate ...
2
votes
0answers
205 views

Configuring ObjectDataSource: Exception has been thrown by the target of an invocation

In my project in Visual Studio 2010, I'm trying to add an Object Data Source which points to one to my business services, and to bind the datasource to a datagrid (or datalist, or whatever). The ...
0
votes
0answers
58 views

ASP.Net Filtering (Security Trimming) Data at Business Logic or in Custom ObjectDataSource

If have the following design question: We have a security concept which makes it possible to configure access to specific entities in database. this is maintained by an table entry which needs the ...
0
votes
1answer
102 views

How to copy a object into formview and save to objectdatasource

I have a wizard page, need copy a object from a gridview, then edit some property to save to an new object. My formview like <asp:FormView ID="FormView1" runat="server" ...
0
votes
0answers
117 views

How to pass multiple selected items from a listbox to a select parameter in a ObjectDataSource

I have a listbox where a user can select multiple items from it, but I need to pass these multiple selected items to a select parameter in an object data source, which will then fire off a query for a ...
0
votes
2answers
189 views

Error Passing ListItemCollection via ObjectDataSource to Custom Adapter

I have an ObjectDataSource declared like this: <asp:ObjectDataSource ID="PaymentsDataSource" runat="server" DataObjectTypeName="Payment" ...
1
vote
0answers
369 views

GridView Footer template manipulation

i created a gridView and it's databound to an objectdatasource the problem that I'm facing is with the insert command. I want to create a footer and usind that footer insert data to database. but when ...
0
votes
1answer
122 views

Hide databound RadGrid rows

I have a telerik radgrid in my .aspx page name rgLowRise, and I have an ObjectDataSource as the DataSource set like rgLowRise.DataSourceID = odsLowRise. This works fine, but I want it not to show any ...
1
vote
1answer
2k views

How to retrieve textbox value in gridview in asp.net

This seems to be a common question but somehow none of the answers I found seem to fix my case - so wondering what I might be missing (I'm new to asp.net so please pardon any blatant mistakes). I ...

1 2 3 4 5 10