Featured post

c# - Usage of Server Side Controls in MVC Frame work -

i using asp.net 4.0 , mvc 2.0 web application. project requiremrnt have use server side control in application not possibl in noraml case. ideally want use adrotator control , datalist control. i saw few samples , references in codepleax mvc controllib howwver found less useful. can tell how utilize theese controls in asp.net application along mvc. note: please provide functionalities related adrotator , datalist controls not equivalent functionalities thanks in advace. mvc pages not use normal .net solution makes use of normal .net components impossible. a normal .net page use event driven solution call different methods service side mvc use actions , view completly different way handle things. also, mvc not use viewstate normal .net controlls require. found article discussing mixing of normal .net , mvc.

sql server 2005 - Telerik MVC Extensions GridBindingToData sample: CRUD operations using ADO.NET DataTable (arbitrary table)? -


in gridbindingtodatatablesample sample can found @ url: http://www.telerik.com/community/code-library/aspnet-mvc/grid/crud-operations-using-ado-net-datatable.aspx hard coded datakeys , columns collection. need generic crud code work html.telerik().grid html helper.

imagine have metadata tablecolumnmedatata table contain table/column metadata:

 table    column        type     length    pk ============================================= emploc   employeeid    int      4         1 emploc   locid         int      4         1 --------------------------------------------- orders   orderid       int      4         1 orders   customerid    nchar    10        0 orders   employeeid    int      4         0 orders   orderdate     datetime 8         0 orders   shipvia       int      4         0  orders   freight       money    8         0 orders   shipname      nvarchar 80        0 --------------------------------------------- employees employeeid   int      4         1 employees lastname     nvarchar 40        0 employees firstname    nvarchar 20        0 

i need suggestions on how modify index.aspx enable universal form work against datatable retrieved sql server.

thanks, rad

you can enumerate table columns , create grid columns on fly.


Comments

Popular posts from this blog

c# - Usage of Server Side Controls in MVC Frame work -

cocoa - Nesting arrays into NSDictionary object (Objective-C) -

ios - Very simple iPhone App crashes on UILabel settext -