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 ctdapper

  1. ctdapper

    How to use CDO to send email?

    Snake, Unless the mail server is setup to receive or route mail from an smtp server then most likley it will never work. Your local computer (smtp) is not set up to to communicate with hotmail's server. This is done to to stop spam............. Programming today is a race between software...
  2. ctdapper

    Insert not done on Win2003. It works on Win200

    Check the version of the framework on both servers. You may need to change the IIS server on the 2003 server to run in IIS 5 isolation mode. Look under website properties then Services I had this problem also and had to Run the WWW service in IIS 5.0 Isolation mode for older asp.net...
  3. ctdapper

    Instructions for exporting to .pdf from ASP.NET

    Once you have your included references just add this code Dim DiskOpts As CrystalDecisions.Shared.DiskFileDestinationOptions = New CrystalDecisions.Shared.DiskFileDestinationOptions() ("Report").ExportOptions.ExportDestinationType = CrystalDecisions.Shared.ExportDestinationType.DiskFile...
  4. ctdapper

    SelectedIndexChanged EventArgs Question

    Pop, You do not use e property you use the datagrid's selected Item property ie: dgIssues.selecteditem.cell(n).text where n is the number of the cell. CtDapper
  5. ctdapper

    Need help with session variables

    D I'm such an IDIOT. Code line 2,562 I have an if statement. That if my data table is not created for the application to create it and to set a couple of session variables. for the first time. However my bag I did not give an else statement to set those two very important session variables...
  6. ctdapper

    Need help with session variables

    D I can check the sql table an it does make an entry into the table for each session. as far as I can tell. mode = "SQLServer" cookieless = "false" timeout="20" Dan.
  7. ctdapper

    Need help with session variables

    Everything worked fine. with the new project I made two simple pages that wouls display the session variable and change it. it worked just fine. Dan
  8. ctdapper

    Need help with session variables

    D, Yes I say that. I went through and deleted all session variables. and gave them a application variable(I don't want to do this but I only want to check to ensure that everything worked.) It work just like the origanal problem. After deleting all session variables. Then I retried the...
  9. ctdapper

    Need help with session variables

    I am unable to set a session variable. and retrive that session veriable. Please advise. Thanks
  10. ctdapper

    Need help with session variables

    D, First thing Monday I will check it out. The project is a work and I try not to work at home unless I researching such as this. Thanks Dan
  11. ctdapper

    Need help with session variables

    D The application allows users to track different phases of a project(a building project). The contractor can look a different areas of the project for the status of the job and the of funds aviable/committed to that phase. I am tring to use session variables to keep tract of the project and...
  12. ctdapper

    Need help with session variables

    Mark, Thanks for all the time. I have searched the microsoft site all day yesterday and today trying to get this to work. Yes in the config. I have tried both the inproc and the SQL neither will work. This works the first time thriugh called when a page loads Public Sub fill_data()...
  13. ctdapper

    Need help with session variables

    Mark, I am new to this web based stuff with dotnet so I will be happy with any help. The Session ID will not print out. I have now lost the use of all session Veriables. However The sqlserver database is keeping track of each session. Platform 2000 server IIS5.0 SQL 2000 development...
  14. ctdapper

    Need help with session variables

    Mark, We are on the same page. My session variables are acting as if they are application variables. When a person enters the site thier session("project") is set to session("project")=1 session("user") = tbuser.text the next person who logs in resets all the...
  15. ctdapper

    Need help with session variables

    Mark, Maybe I did not explain myself correctly. When user two starts a session then changes to a different project number the project number changes for all browsers that are connected to the site. I have a search that button that the user can enter in the project number then on the click...

Part and Inventory Search

Back
Top