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 Chris 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. blah2468

    AJAX POSTBACK

    hey thanx for the help, I found the problem: I am using a "Web user control" to handle my AJAX call and I guess .net doesn't like that. So instead, now I'm using a web Page control and everything is ok. Jeff, "req" is actually defined as part of the main JS class I use in my masters class...
  2. blah2468

    AJAX POSTBACK

    hi there, I'm getting a "Forbidden" error on my xml respons and I'm not sure what it means... Hers's my code: Please note, I have a AutoEmailManager.js file that contains the following code. I have a webUserControl that uses this .js file and it is called: "ucAutoEmailManager.ascx". If you look...
  3. blah2468

    Data Signals to file...

    Hey thanx for the tip; that's exactly what I did to begin with.. no luck Following 3 lines do the magic though: Dim bt() As Byte bt = System.Convert.FromBase64String(base64String) System.IO.File.WriteAllBytes(pdfReportFilePathnName, bt) And here's the complete function i use. I simply pass...
  4. blah2468

    Decoding base-64 data into a pdf file

    in case you are wondering, here's the encoded file in base-64 and I have to turn it into a pdf file... any help is much appreciated: [code] <DOCUMENT> - <![CDATA[...
  5. blah2468

    Decoding base-64 data into a pdf file

    Hi there, I have the following (simplified for readability purposes) xml file: <document> ... </document> in there there's a base-64 encoded pdf file. what I need to do is to decode this base-64 encoded file into an actula pdf file where my users can actually view... Any idea on how to go...
  6. blah2468

    Data Signals to file...

    Hi there, I'm supposed to process an xml file. In this xml file content of a pdf file is returned as data-signals (hexa-decimal sequence of alph-numerical characters) The format of this xml file (hugely simplified) looks like this: <EMBEDDED_FILE _Extension=".pdf">...
  7. blah2468

    Redirecting to another server (and preserving http-header)

    Hi there, I have a main website application: urlMain = www.urlMain.com I am supposed to redirect a bunch of other URLs to urlMain. Here's the problem: in urlMain I need to detect which url the user used to get to urlMain. So I thought it would be as simple as the following: 1. create a temp...
  8. blah2468

    Removing &quot;\&quot; from responseText

    ok, here's the real code: function DisplayCurrentGFE_StateHandler() { if (req.readyState == 4) { if (req.status == 200) { //We have an html text that displays a list of GFEItems var str; str =...
  9. blah2468

    Removing &quot;\&quot; from responseText

    Hi there, I'm processing a text from an XMLHttpRequest. Here's what it looks like: str = req.responseText When debugging, str looks like this: str = callHelloFunction(\"param1\", \"param2\") Now what I need to do is to replace the "\" to "". I'm trying the following: str =...
  10. blah2468

    Adding data to DropDown causes invalid post back

    oh right, sorry! Just to close the subject, I have the solution: the name of my Drop Down was conflicting with a drop down in my main page!!! All I had to do was to rename my drop down. cheers!!
  11. blah2468

    Adding data to DropDown causes invalid post back

    Hi there, I have a drop down in a web user control. Its auto postback is set to false. This user control goes inside a multi view in my main page. User clicks on a link to activate the multiview. Now, the first time around, when user clicks on the link, this web user control loads just fine...

Part and Inventory Search

Back
Top