My first asp.net application Need reviews and suggestions

Discussion in 'ASP.NET' started by Mr.President, May 18, 2011.

  1. Mr.President

    Mr.President New Member

    Joined:
    Apr 25, 2010
    Messages:
    51
    Likes Received:
    1
    Trophy Points:
    0
    LOG IN

    This is the login page I did not use the login control cuz I needed a simple login for a simple login table so I used my own login page

    [​IMG]


    ADD TASK

    When a user logs in the application redirects the user to add task page here users can add tasks in this page I faced couple of problems

    1. I couldn't find a drop down calender control
    2. I tried to add a js calender but asp.net controls doesn't respond to js I mean when running the site the controls names and ID changes so I couldn't figure out a way to implement a js calender


    [​IMG]


    Search task

    Tasks can be searched by using date this page will post the dates into another page displayasks.aspx from there I displayed the tasks

    I used this line to allocate a small box in the asp.net page

    Code:
    <asp:Literal ID="ltlArray" runat="server" />

    then on the page load event this area will be filled using data using this code


    Code:
    foreach (....................)
    {
                mystring = mystring + "<h3>"+tbl.taskName+"</h3>"
                + "<div>" + tbl.taskDescr + "</div>";
    }
    ltlArray.Text = mystring;
    
    
    [​IMG]



    GUYS I NEED UR advice on how to improve this application pls help
    thx
    :nice::nice::nice:
     
  2. annaharris

    annaharris Banned

    Joined:
    May 4, 2012
    Messages:
    7
    Likes Received:
    1
    Trophy Points:
    3
    Good try. I recommended that you can consider using Data Control such as GridView, ListView, and Reapter control. It is easy to use them to bind the data and display it as template in page.
     

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice