Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: vergilius
  • Order by date
  1. vergilius

    Making user_information accessible for all pages

    Keep information into session. In login function add something like : //C# Session["User_Id"] = user_id; Session["User_Name"] = user_name; And then you can take it from every page by doing: //C# string user_name = Session["User_Name"].ToString(); user_id = (int)(Session["User_Id"]);
  2. vergilius

    Registration Page Security Question

    It cannot be just text becouse then robotic program will be able get content of page and find this text and insert it into reguested field, so it must be images. There is enather couple things. The image if you will look it closely kind looks dirty, it have points, lines and don't look clean...
  3. vergilius

    Registration Page Security Question

    Yes you right. It is about security. It's protection from robotic registration (against scripts that can make mass registrations).
  4. vergilius

    WebControls are not currently supported?

    They work. Since ASP.NET convert any controls into html controls so IE (internet explorer) don't have problem. For exemple DataGrid control display into IE as just table html tags.
  5. vergilius

    Installing my app to the web

    1. You can have your files in different directories. 2. Yes only aspx and dll files.
  6. vergilius

    Session data gets lost in transit? Cache problems?

    Do you create variable $_SESSION[counter] some where ? becouse if not, then i am not sure that you can just do $_SESSION[counter]++; , I think you need create variable, register it in session, and only then do with it what ever you need.
  7. vergilius

    PHP

    If you want do development of your site at home, then you will need PHP itself ( http://www.php.net ) , some good web server, for exemple Apache (most of hosting providers use it http://www.apache.org ), and if your site will use database then you will need database too (MySQL for exemple...
  8. vergilius

    Java Editors

    hi all. I like use JCreator : http://www.jcreator.com It has all what java editor must have but cost $$ :-(

Part and Inventory Search

Back
Top