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: sweta
  • Order by date
  1. sweta

    Can I clear client's history from my program?

    After signing out from the web site, I want to clear client's browser history so pressing back button doesn't take it to the previous page. Is it possible doing this from my asp page?
  2. sweta

    Class Not Registered

    Thanks for your reply, I tried doing it but unfortunately it didn't work. The error was Load library failed even when the dlls were present in the windows system directory. please suggest some other fix. Thanks, Sweta
  3. sweta

    Class Not Registered

    Hi there, I've made an application for sending mails. It references msado15.dll and cdoex.dll. This Application needs to be installed on a 98 box. My problem is the application works fine with XP and 2000 boxes. But it doesn't work on SOME 98 PCS.On some 98 machines cdoex.dll and msado15.dll...
  4. sweta

    CDO Problem...

    Hi, The SMTP Server is listening on the default port- 25. So I am not using the cdoSMTPServerPort property. Thanks, Sweta
  5. sweta

    CDO Problem...

    I've made a dll in VB which is used for sending mail. Delivery of the message is initiated by transferring the message to a designated SMTP server.I am using CDO object and I use a proxy server to connect to the internet. I am giving The dll code snippet where I initialize the Configuration...
  6. sweta

    ASP and Component

    Follow these steps: In the html form set the action property to an ASP page where you will instantiate your VB component. In the VB Dll set a reference to the following libraries COMSVCS type library Microsoft ASP object type library ( i don't remember the name of these libraries quite that...
  7. sweta

    IIS Installation Issue

    Did I mention that you have to check these settings for Internet Explorer.(I assume you are using Internet Explorer) I hope you are your pc is connected to a LAN. In that case one of the PCs is used as the proxy server. So in the Internet Explorer you must be having the IP address of your...
  8. sweta

    Array used in loop gets error

    Hi Steve, Your code seems to be alright. But may be the comp you are working on doesn't have CDONTS installed on it. Try using CDO instead..CDO is installed with various flavors of Outlook and Exchange server... CDONTS is installed with IIS (specifically, the SMTP component). You have to...
  9. sweta

    IIS Installation Issue

    Check first whether the directories Inetpub and wwwroot are created or not. These directories are created when you configure IIS. If the directories are created and IIS is running then check your browser settings. If you are using a proxy server to connect to the internet then in IE, go to...
  10. sweta

    Chat application putting too much load on the web server

    Hi all, I am not storing all the messages in the application object. Rather I store only 20 last messages.The 21st will replce an existing msg. Similarly I kick out inactive users after every 10 min.And if the chat room is empty then the application objects are destroyed. I thought I took...
  11. sweta

    Chat application putting too much load on the web server

    Hi there, Its a chat application which has public chat rooms but users can send private messagses also. They can create their own chat rooms. Everything is done using 3 application objects (Dictionary)Uers,Rooms and Messages. Everytime a user enters..one element is added to the Users...
  12. sweta

    Chat application putting too much load on the web server

    Hi there, I've made a chat application in ASP which uses Application scope Dictionary objects. The application works fine with 4-5 users (CPU usage= 11%). But if it subjected to stress testing with 20 simultaneous users typing too fast the CPU Usage was exponentially increased (100%). Now its...
  13. sweta

    Accessing Application Object from a VB Dll...

    Hi Shaddow, You can always access ASP built in objects from VB using the Object Context Object. In fact you can build an entire ASP application using VB alone and lil' bit of ASP. In fact I have done it too many times. This time I found the the behavior lil' strange.Anyways... Thanx, Sweta
  14. sweta

    Accessing Application Object from a VB Dll...

    Hi there, I've written a Dll using VB, which accesses an application object created in global.asa with <OBJECT> tag. <OBJECT RUNAT=Server SCOPE=Application ID=Users PROGID=&quot;Scripting.Dictionary&quot;> </OBJECT> I add elements to the 'User' object using the staticobjects collection of...
  15. sweta

    Inconsistent behavior of global.asa

    Hi there, My global.asa opens a connection in Session_OnStart() and accesses a table in SQL Server. Sometimes the application runs properly but sometimes it gives an error that SQL server database doesn't exist or access denied.But after sometime my application starts working. For past two days...
  16. sweta

    Where can I get Internet Information Server?

    IIS comes with Win XP Pro.But you need to configure it in order to wokr with it. follow these steps.. 1.Control panel->Add/Remove Programs->Add/Remove Windows Components 2.Select IIS->Click on Details->Select all services(WWW,SMTP,FTP,MSMQ etc.)->ok 3.And then click on the next button and...
  17. sweta

    Uploading COM component on a web server

    Hi all, I have to upload a COM component on a web server. It's a Dll created using Visual BAsic. Can anybody tell me what exactly needs to be done to upload it on the web server. I think I got to ftp the dll on the web server and then register it on the server using COM+. Is there anything else...
  18. sweta

    Help..IIS got screwed

    Ofcourse LV.. it helped and thats why you got that star.Thanx. Sorry guys for troubling you with IIS question but I think IIS related problem get attended better in ASP forums. Have a nice day!! Sweta
  19. sweta

    Help..IIS got screwed

    Hi there, I used the commands net stop iisadmin/y and net stop w3svc to stop IIS. But after stopping it IIS isn't starting no matter whatever I do. I used net start iisadmin/y and net start w3svc. But to no avail and iis isn't working even after I rebooted my machine. Can anybody tell me what...
  20. sweta

    Changing the threading model of a com component

    Thanks for this information John.This was quite a helpful info. Have a great day!! Sweta

Part and Inventory Search

Back
Top