Create an administration area for managing a dynamic website

I learned asp.net from books available on the Internet, but I did not find a good book that talks about some methods or logic for creating an administrative area for managing the interface. I mean, they talked about security, membership and roles. but still they didn’t show you how to manage anything that is not related to the database, anything related to the database, you will probably create a page to display some information from db with some SELECT commands and another page for administrator INSERT, DELETE, UPDATE

but how can I connect to other controls from my admin panel.

for example: a text box in admin.aspx will edit the value of a specific label in display.aspx

another example: I created a web user control to extract articles from the database and another control that will be placed on the admin page, which will allow the administrator to add new articles and inserts it into the database, how can I add more power to the admin page to control the number of articles displayed on the page, or control the sorting of articles, etc.

If I could get the name of a book that will help me with the logic or the basics of creating a page that works like my admin panel to control the interface, it would be great if not! some ideas or articles will help

Thanks for your time and help in advance =)

+3
source share
4 answers

, . .

<asp:TextBox ID="txtPageSize" runat="server" />

- , . .

// plenty of ways to do so

. . GridView

this.GridView1.PageSize = // insert code to retrieve the value you just saved before in the admin arae

Edit: , asp.net. , , . , , , .
"" , http://msdn.microsoft.com/en-us/library/ms178597.aspx, , (, IIS). , , , . , (, ).

+1

. Admin . default.aspx .

+1

, , . , , , , .NET Nuke.

0

Source: https://habr.com/ru/post/1767579/


All Articles