Search

You searched for the word(s): userid:522155

Matching Posts

  • Re: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.

    I added the code below to the web.config file and it worked. I found that there are two things that can time out. The SQL call can time out and the application that is running can time out. <system.web> <customErrors mode="Off"/> <httpRuntime appRequestQueueLimit="100" executionTimeout="60000" /> </system.web> Hopefully this works!
    Posted to Personal Site Starter Kit (Forum) by spfeiffer13 on 3/11/2008
  • Re: Problem sending SMTP mail

    I don't think that they are being truthful either. It worked fine for over a year then stopped. The fact that they can see the emails hit their server and get stuck, to me, means it is a problem on their end. I just think that they don't know how to fix it. It's to the point that they won't return my calls and they automatically close any support tickets that I open. Those were old authentication details but I removed them anyway. Thanks, I overlooked that! Scott
    Posted to Web Forms (Forum) by spfeiffer13 on 8/29/2007
  • Problem sending SMTP mail

    I have an issue that has totally stumped me. I have a web-based application that sends out an email letting me know when it has been successfully filled out and submitted. This has worked fine for over a year. Now, all of a sudden it has stopped working. I called the hosting company and they swear that their SMTP server is working fine and that there haven't been any changes to it. I did not change any of my code. I was not using authentication either. They have since said that I need to send
    Posted to Web Forms (Forum) by spfeiffer13 on 8/29/2007
  • Re: http request help!

    Thank you for your reply. It's getting me going in the right direction but I have run into a few problems. Below is the function that I'm working on and the error that I'm receiving. Do I need to read the response? If so, what do/can I do with it? There is not a 'GetResponseStream' property that I could find, only a 'GetResponse'. Thank you for your assistance. I will definitely mark as answered when working. Scott 8/8/2007 10:03:57 AM 5[ModCourseCopy:ProcessBatchCourseCopyFileAngelBatchCourseCopyThis
  • http request help!

    First, thank you in advance to anyone that can help. This is my first attempt at something like this. I need to create a function that will read in a file and loop through each line and send that line to a URL. Each line is a text string that triggers an API in a software package. I have everything working except the the http request. If I copy and paste the string into the address bar of a web browser it works. I just need this automated because it will take all week to copy and paste the 100's
  • Re: CreateNewUserWizard problem

    Can you post the code? Thanks
    Posted to Getting Started (Forum) by spfeiffer13 on 3/8/2007
  • Please help with a quick fix for 'Operation timeout'

    Can someone please help me with this? This function keeps timing out. I have found searching through forums that I need to 'Solved it by setting the timeout property to command object'. This code was written by someone else and I'm not sure how to do this. I'd really appreciate the help. Thanks, Scott Private Function Data2Array() As Array Try If (dbConnection.State = ConnectionState.Closed) Then dbConnection.Open() 'select count(*) from TimesheetStudentActions where stuAction='feedback' Dim dTable
  • Re: Error: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.

    I'm having the same problem but I'm trying to edit someone elses code. Can anyone help me with this? Where would I set the connection timeout to 0 in the function below? Thanks... Private Function Data2Array() As Array Try If (dbConnection.State = ConnectionState.Closed) Then dbConnection.Open() 'select count(*) from TimesheetStudentActions where stuAction='feedback' Dim dTable As New DataTable( "temp" ) Dim dtAdapter As New SqlDataAdapter( "SELECT SECTIONID,SCHLSTUID,convert(varchar(10),cast(DAYACCESSED
    Posted to Personal Site Starter Kit (Forum) by spfeiffer13 on 3/8/2007
  • Re: How to cast to a dynamically created control?

    If I have to recreate the controls each time the page postbacks, how do I retain the selection that the user has made? Everytime they recreate, the item that was selected in the dropdownlist is gone. Is there a way to tell what was selected? Can I enable a 'State' or something like that? Thanks, Scott
    Posted to Web Forms (Forum) by spfeiffer13 on 2/16/2007
  • Re: Problem with dynamic controls

    I am having a similiar problem and your answer to this post half answers my question. Basically, I have a web form that allows the user to select how many courses they want to sign up for. They enter the number into a text box and click a submit button. That many dropdownlists are then created and bound to data. Then...when the user tries to submit the form it should validate that they have chosen duplicate courses and, if everything is ok, it should submit the form. What is happening is, everything
    Posted to State Management (Forum) by spfeiffer13 on 2/15/2007
Page 1 of 5 (49 items) 1 2 3 4 5 Next >