PDA

View Full Version : nino can we have mention of the forums on the home page


Cobra4me
12-15-2009, 08:04 PM
We are looking for increased traffic and I dont see any mention of the forums can you add a link to the forums. It may be there but I didnt see it thanks man
http://www.ninosport.com/

Nino
12-16-2009, 10:21 AM
Looks like when we moved our store to the new system the link to MX didn't make the transition. Pretty sure we had a link on the Ninosport homepage before. Thanks for pointing it out.

Nino
12-23-2009, 08:11 AM
We've added a link on the storefront to MX.

Cobra4me
12-23-2009, 11:12 PM
thanks! :cheers:

insonicaunk
06-27-2011, 09:38 AM
We all enjoyed the datalist and the datagrid controls in asp.net datagrid (http://www.treegrid.net/asp.net-datagrid.html) . There were thousands of operations that we can perform using datagrid and datalist control. asp net gridview (http://www.treegrid.net/asp.net-datagrid.html) ships with another data bound templated control which is called Grid View. Grid View has made everything easier for developers. asp net grid (http://www.treegrid.net/asp.net-gridview.html) changes that I have seen in Asp.net 2.0 is that we don't require a lot of code to achieve tasks but most of the functionality is already provided and built in the control.

In this article we will see the GridView control in action and we will see what type of operations we can dynamic table (http://www.treegrid.net/dynamic-table.html) perform using this control and how this control is better than the classic datagrid control.

Using the sort table (http://www.treegrid.net/sort-table.html) Control:

If you read my previous articles on DataGrid control you might have noticed that we need to write quite a bit of code to enable paging, sorting and selecting an item from the datagrid. Using the gridview control I did not even write a single line and got all the three things i.e, paging, sorting and selection for granted.

insonicaunk
06-27-2011, 09:45 AM
The net table (http://www.treegrid.net/net-table.html) control is the successor to the v1.x DataGrid, adding the ability to take advantage of specific capabilities of ASP.NET data source controls. Whereas the v1.x datagrid net (http://www.treegrid.net/asp.net-datagrid.html) required a page developer to write custom code to handle simple operations such as paging, sorting, editing or deleting data, the GridView control can automatically handle these operations provided its bound data table html (http://www.treegrid.net/table-html.html) source control supports these capabilities. The GridView also offers some functionality improvements over the DataGrid, such as the ability to define multiple primary key fields, and some UI customization improvements, such as new field types and templating options. It also exposes a new model for page developers to handle or cancel events.

In the preceding example, the GridView control reflected against the fields of the data records returned by SqlDataSource in order to dynamically generate the columns of the grid. You can data grid (http://www.treegrid.net/asp.net-datagrid.html) also specify explicit column fields to display by adding DataControlField objects to the GridView's Columns collection. This allows you to specify exactly which columns to display and their relative order. The following example demonstrates a collection of BoundField and CheckBoxField objects in the net grid (http://www.treegrid.net/net-grid-view.html) collection. Other field types that can be assigned to this collection are ImageField, HyperLinkField, CommandField, ButtonField, and TemplateField.