Create a billboard application to display information to all users. Implement a simple login option without password.
It should be possible to add/modify/delete a notice by the administrator.
It should be possible for any user(public) to view the list of notices.
On closing the application , a popup should be shown to the user with the following message
'Do you want to close this page? If the user clicks no/cancel , the page should not be closed.
use ajax and jquery.
Shivanand ArurPosted Sep 29, 2012, 3:22 AM
Hello Manuel, Here you can create an aspx page which will contain a gridview to show the information of the bill....
Let's take an example, say your Grid contains columns like the "Bill Name","Bill Generation Date", "Bill Amount" and some other field that you require....
You can also add a login button on the same page which will authenticate the Administrator. If the login is successful, then redirect the user to the a page (for eg- A BillSetup.aspx page).
The page will contain all the required Controls like the Textboxes, Buttons, etc... From here the User will add the required information which will be stored in an SQL Database...
Table will contain columns like the ,"Bill name", "Bill Details", "Bill amount" etc.... NOW. you can just bind the Gridview with this table dynamically to show the required items.
You can call a JavaScript function to check if the Uset is closing the application. If yes then show an alert message... If he clicks on "OK" then close the app else let it be as it is....
Hope this is helpful. Thanks.
Please mark the answer ad ACCEPTED if it helped you.