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 strongm 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. gangar

    getting string from server script to Client script

    I was hoping that there is a better way rather than handling myself each and every special character might appear in my input string. When I tried to launch html form instead of ASP, I can pass input string as dialog arguments from my C++, which handles all special characters perferctly! Only...
  2. gangar

    getting string from server script to Client script

    I tried Html encoding, and having same problem. I tried with simple \n in the input string: function DisPlayMsg() { var outputstr outputstr = "<%= Server.HTMLEncode(Response.BinaryWrite(Request.BinaryRead(Request.TotalBytes))) %>" alert(outputstr) } And after server process: function...
  3. gangar

    getting string from server script to Client script

    No, I haven't. I new to ASP and scripting.Could you please provide some example code. - Thanks
  4. gangar

    getting string from server script to Client script

    Hello, I am posting string data from C++ application, which uses activex webbrowser control, to ASP. The only way i can post this string in binary using safearray. Anyhow, I am able to successfully read this string in ASP server and assign it to client script varible using following statement...
  5. gangar

    Reading sent string using POST method in ASP

    Thanks Sheco. Request.BinaryRead method helped. I am able to see whatever string POSTed from my C++ code when added Response.BinaryWrite(Request.BinaryRead(a)) line to my ASP. That confirms that ActiveX control successfully posing the data. Can you help me how to parse this banary to read actual...
  6. gangar

    Reading sent string using POST method in ASP

    Hello, I am VC++ programmer. I am novice to ASP. I am using CWebBrowser2(ActiveX control) to navigate some user-written ASP pages from my application. When I navigate from my CWebBrowser2 control, I am telling it to use POST transaction instead of GET transaction and sending some Post data...
  7. gangar

    CWebBrowser2 related help please

    Hello, Our system developed using VC++ with COM. Our new requirement is to launch user written ASP forms from our system. To achieve this I added CWebbrowser2 control in our dialog and launched ASP pages using Navigate method. The problem is that we need to pass some input data to these ASP...

Part and Inventory Search

Back
Top