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 Chriss Miller 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: *

  1. NoviceNet

    Function which returns more than one value

    Great suggestion Sonya. Thank you.
  2. NoviceNet

    Return more than one value in C#

    Great help. Thank you.
  3. NoviceNet

    Function which returns more than one value

    How do I implement a function so that it returns more than one value? Just like Return a,b,c,d or Return array[2] or by using OUT Params?
  4. NoviceNet

    Return more than one value in C#

    I need to return more than one value in a c# function. Just like 'Return a,b,c,d'. How do I do that?
  5. NoviceNet

    WinHttp timeout issue

    Actually it's not related to ASP page since it's session timeout is way too big. Otherwise this error would have occured quite frequently. This is something related to WinHttp object's timeout settings. Any answer for this issue?
  6. NoviceNet

    WinHttp timeout issue

    I am using WinHttp object to send and receive information (getting a document in terms of bytes and opening on the browser by converting it into PDF). I am not setting any timeout explicitly in my C# program. Sometimes, our clients are coming across 'timeout' error while downloading the document...
  7. NoviceNet

    Weird XML error

    Thanks RTomes.
  8. NoviceNet

    XML error while retrieving data

    Great. Thanks
  9. NoviceNet

    Weird XML error

    Wish I could reproduce this issue and also this occured once or twice by our clients. I know that by looking at the code, it's really hard to predict the error type. But are you aware of this type of error regardless of the line number?
  10. NoviceNet

    Weird XML error

    Any idea?
  11. NoviceNet

    How to use include files with ASP.NET

    You need to add this in the page load event in code behind. submit.Text = myControl.userName
  12. NoviceNet

    Weird XML error

    I have these lines: url = "http://myserver/sample.asp" strXmlDoc = "123456" WinHttpRequest objHttp = new WinHttpRequest(); objHttp.Open("POST",URL,false); objHttp.Send(strXmlDoc); XmlDocument doc = new XmlDocument(); strResultXml = objHttp.ResponseText; - - - - - - - - - - - - - - -
  13. NoviceNet

    Weird XML error

    I am using XML along with WinHttp object to download documents from another server over HTTP channel. I come across this error few times. Description: The '2' character, hexadecimal value 0x32, cannot begin with a name. Line 1, position 26. Any idea?
  14. NoviceNet

    XML error while retrieving data

    I am retrieving documents over HTTP channel using winHttp and XML objects. I came across this error recently. Any idea what could be wrong? Description: This is an unexpected token. The expected token is 'WHITESPACE'. Line 1, position 50. System.Xml Stack Trace: at...

Part and Inventory Search

Back
Top