Repetitive Rows of Controls
-
Hi I'm new in asp.net, Now i'm developing a project for a news agency. I stored fields about news like NewsTitle, NewsBrief,NewsDate,... in database. I want to show custom news (for example last 10) in a home page. Which control i should use? Each news containg title, breif, small picture and the news. Should i use panel control or i should add table programmatically to the page? Please Help, Tanx.
-
Hi I'm new in asp.net, Now i'm developing a project for a news agency. I stored fields about news like NewsTitle, NewsBrief,NewsDate,... in database. I want to show custom news (for example last 10) in a home page. Which control i should use? Each news containg title, breif, small picture and the news. Should i use panel control or i should add table programmatically to the page? Please Help, Tanx.
I'd use a repeater, to give me full control over how each item is rendered, and make it's data source a collection of NewsItem objects (a class you create )
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
I'd use a repeater, to give me full control over how each item is rendered, and make it's data source a collection of NewsItem objects (a class you create )
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
Dear Christian Sorry! Your answer is not completely usefull. Can you give me a source? Is repeater a control or its Custum control you created for yourself? How youu add that to your page? Tanx
-
Dear Christian Sorry! Your answer is not completely usefull. Can you give me a source? Is repeater a control or its Custum control you created for yourself? How youu add that to your page? Tanx
HI Reapeter is ASP.NET 2.o server control you can add it by simply drag and drop from control panel to your page ... If you want some code please search on google for it definalty you will get many sites best of luck
Thanks and Regards Sandeep If If you look at what you do not have in life, you don't have anything, If you look at what you have in life, you have everything... "
-
Hi I'm new in asp.net, Now i'm developing a project for a news agency. I stored fields about news like NewsTitle, NewsBrief,NewsDate,... in database. I want to show custom news (for example last 10) in a home page. Which control i should use? Each news containg title, breif, small picture and the news. Should i use panel control or i should add table programmatically to the page? Please Help, Tanx.
Ok friends Tanx for all your replies. You solved my problem. It's cool. I found many references in web about Repeater Control. Regards