Showing related tags and posts accross the entire site.
-
Hello, I have generated a netTiers, admin site was generated to. when the UpdatePanel was added into the EntityGridView, and i do edit update the data, it's take so long and finally crash on database. What should i do to make the EntityGridView works fine inside UpdatePanel and ContentTemplate? Thanx
-
Hello All, I'm completely baffled by this one. I generated code with a web site and the <TableName>.aspx displays a EntityGridView with a pager at the bottom. I have copied and pasted the contents of the aspx page and the .cs codebehind to my own site the data show up just fine but the control...
-
I have a bunch of form fields that are used to filter a result set. The datasource has multiple filters setup that are linked to these controls. If I change a field value - choose an option in a dropdown field - and then try to navigate to Page 2 in the EntityGridView, the datasource detects that the...
-
Hi I'm relatively new to NetTiers programming so there may be a simple solution to this problem (I hope anyway!). It seems that when I have an EntityGridView bound to a datasource and I delete a row (using the CommandName="delete"), if I then hit the refresh button on the browser (IE in this case) the...
-
Hi there, Have tried a number of different suggestions from the forums but can't seem to get this relatively simple setup to work. I'm using the generated web admin templates and just modifying them slightly so that i can editing data from two tables at once. In this sample I'm actually using Aspnet_Users...
-
Hey guys, tremendous work you all are doing with .netTiers!! I need to be able to dynamically change the connection string on my Entity Data Source and for the life of me I can't figure it out. Here is my Entity Data Source and EntityGirdView. < dataAms : AMSSiteDrugsViewDataSource ID ="dsSiteDrugsView...
-
I am attempting to pull from a SQL Server database using the strongly typed datasource generated by CodeSmith. Paging is working correctly, however I cannot seem to get sorting to work. Thanks in advance, jeremiah Here is the code in question: <cc1:DistrictDataSource ID="DistrictDataSource1" EnablePaging...
-
Hi - I'm pretty much new to .netTiers (and from what I've seen so far I'm loving it!), so apologies if I'm missing something obvious. However when I try and bind either a GridView or an EntityGridView to one of the new typed entity datasources, it won't render in Visual Studio design mode. Here's an...
-
LKNetDev, For EntityGridView to work against ObjectDataSource edit the EntityGridView.cs and modify the following: void dsc_Selected(object sender, ObjectDataSourceStatusEventArgs e) { RecordsCount = e.AffectedRows; RecordsCount = ((DataSet)e.ReturnValue).Tables[0].Rows.Count; } Thanks, Michael P.S ...
-
I think I'm missing something really basic here. I have an entity gridview bound to a typed datasource- this is the generated admin page using 13/Nov/06 nightly templates. The entity has multiple foreign keyed relations. Nothing happens when I select delete. Its obviously choking on the foreign key colections...