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...
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...
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...
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[...
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...
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">...
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...
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 =...
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 =...
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!!
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.