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 TouchToneTommy 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: vikramonline
  • Content: Threads
  • Order by date
  1. vikramonline

    Moving File - Permission Denied

    I am trying to move a file using FSO in ASP but I get the below mentioned error " Microsoft VBScript runtime error '800a0046' Permission denied /test/Default.asp, line 47 " For whom,which and where the permissions have to be set ??
  2. vikramonline

    Send And Receive Email

    User on myy site requires to send an email to another site and when an acknowldegment is received,it is to be shown online to the user. Sending an email is not a problem.But the email has to be sent with an attachment with a diff MIME type.I want to go with CDONTS.How can I set the MIME type...
  3. vikramonline

    Client IP Address

    When I use Request.ServerVariables("REMOTE_ADDR") I dont get the IP address of the client but my won local IP. Do I need to configure the IIS Server or what??? Actually I am creating a site where I want to know (for security reasons) from which IP Address a user has logged in . Please suggest.
  4. vikramonline

    Client IP Address Detection

    This script does not work for me. <SCRIPT LANGUAGE="JavaScript"> var ip = '<!--#echo var="REMOTE_ADDR"-->'; // This part is for an alert box alert("Your IP address is "+ip); // This part is for the status bar window.defaultStatus = "Your IP address is "+ip; // This part is for the title bar...
  5. vikramonline

    Using SHTML files in ASP ??

    Can we use SHTML with ASP ?
  6. vikramonline

    dd/mm/yyyy Format Urgent Please

    I am using MS-Access with ASP. I have a form in which user enters some data and it is inserted into the database alongwith the entrydate(which the user does not fill) Date format in Access is set to shortdate. The entry date entered in Access is always 05/01/2004 but it should be 01/05/2004...
  7. vikramonline

    Recordset Question ??

    I have a table in Access with abt 35 fields. I want to trasmit a record to the server only when the fields required ( almost all of them) are filled otherwise not. Shd I check each and every field required manually or there is some for each...type of loop or some other easy way of doing this...
  8. vikramonline

    Users Country ??

    I want to keep a log of the users who logged in into our site,the place from where the user logged in,the logged in date and time.... everything. How can we retreive the country from where the user logged in ?? Shd I create a text file for storing all this information,or shd it be stored in...
  9. vikramonline

    Master Detail Details

    I wanna display Master Detail information in a tabular format,where the child information shd be displayed right under its master information.The master information shd have a plus icon which when clicked changes to Minus icon and the child details get expanded(shown),and when we click Minus...
  10. vikramonline

    Want to upgrade from Access to SQL Server ?

    I am using MS-Access with ASP right now and I wanna upgrade to SQL Server.I wanna know that am I supposed to make huge changes in the code, or are the changes minor ??
  11. vikramonline

    Schedule a Vb program to run every 10 mins

    I want a vb program to run every 10 mins,when my system is running.It is suppposed to pick all the new uploaded files from a folder,interpret them and store the relevant info in the database. Any suggestions ??
  12. vikramonline

    Question about table borders

    I have two tables both with border = "1" and bordercolor = "black",one on top of the other. Now what is happening is that the common border between the two tables get increased in height( becomes 2),which is not what it should look like.I want the border to be same everywhere Any suggestions.
  13. vikramonline

    Server Side Date Format

    Our server has the date format set to dd/mm/yyyy,but when I try to show the date using either NOW or DATE functions, I dont get the correct format.It shows the date as 04/13/2004 instead of 13/04/2004 which is the format I want. Any suggestions .
  14. vikramonline

    Image looks dull when taking print

    I am displaying a invoice in a tabular format which the user can print.This invoice has got many logos (gif files). On the browser the logos look very nice and sharp, but when I take a print the same logos are printed very dull. What can be the problem. Please suggest ?
  15. vikramonline

    Redirect user after updation

    I use Recordset paging ( 10 records page) to display records from the Access database.User has the option to click any record and update it. Everything works fine.What I want is that after updation a loading message like "Record Updated" should get displayed and then the user should be...
  16. vikramonline

    Data Type Mismatch Error

    I have a table called tblFlight_Schedule in MS-Access which has got two fields arrival time and departure time (both date/time fields and not reqired).I want to update the details of a flight online. sql = "update tblFlight_Schedule set Origin = '" & org & "',Destination='" sql = sql &...
  17. vikramonline

    Got a Question related to printing ??

    I wanna print an invoice which is displayed in tables. When we take a prinout of that from the web site,we get Web site title and "Page 1 of 1" right at the top and web site address at the bottom which I dont like to get printed. Can this be done ?? One more question.I have to actually take 6...
  18. vikramonline

    Best way for database Connection ??

    We are creating a site which uses an Access Database in ASP.Right now what we are doing is that we are opening connection in every page.I doubt that there shd be some better way. Please suggets.
  19. vikramonline

    Can we have an Editable Grid in ASP ??

    I have a master detail form. Where we enter one master detail and many child details. Now the no of child details is not known.It can be 1 or 100. How can we tackle such a problem in ASP ?? Please suggest.
  20. vikramonline

    How many items can a Combo Box have?

    I have a Combo Box which gets populated from the database table,which has around 35000 records. Problem comes when loop has finished 32736 iterations. I get RUNTIME ERROR 5. Just for cross checking I started with a new Standard Exe with a Combo Box in it.When I try to populate the Combo Box...

Part and Inventory Search

Back
Top