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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by rdsmadhu

  1. rdsmadhu

    Is there a difference? Request("myform") Request.Form..

    Hi snowboardr, Request.Form("myform") retrieves value only from a form. But, Request("myform") retrieves value either from a form or a query string(which ever is passed). I do think I am true. ********************* Sincerely, rdsmadhu. *********************
  2. rdsmadhu

    Authentication with session variables?

    But 777axa, each user has his own username which is unique. if you call session("uid") it returns the username of the current user and not somebody else. this is valid in any page until the session is timed out. ********************* Sincerery rdsmadhu. *********************
  3. rdsmadhu

    selecting the latest entry

    Make the query something like this. sql="select * from news order by id desc" It will give you all the records with the latest record first. Hope it helps you. ********************* Sincerery rdsmadhu. *********************
  4. rdsmadhu

    Authentication with session variables?

    hi axa777, I got your problem.You do this. First show the login page where a user enters his uid and pwd. On submit the action should go to an intermediate page which checks the authenticity of the user. If u find the user valid then only give hime the session("uid")=myuid and...
  5. rdsmadhu

    Need some help with these code!

    Hello fireburner69 , I am confidant that You will find a solution to the problem if you use the group by clause in the sql query. You can easily find the number of news each one has, and you can take the appropriate action. If u still find trouble,let me know so that i can help you...
  6. rdsmadhu

    input type="file" problem

    If you only want the file name and not the directory name then split the complete path of the file-textbox using the Split() function and on the basis of "/" character. Then take the last token. this will give you only the name of the file along with its extension.

Part and Inventory Search

Back
Top