CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: aaronking

Page 1 of 10 1 2 3 4

Search: Search took 0.03 seconds.

  1. Re: VB.net - HttpWebRequest 401 Unauthorized Error

    Hello,

    I had to add the username, password, realm, nc, .. etc in the header as it wasn't including it when I sent the request.

    request.Headers("Authorization") = .....
  2. VB.net - HttpWebRequest 401 Unauthorized Error

    Hello,

    I am trying to connect to a XML file that is stored on a device and this XML file is password protected with a username and password.

    If I open a web browser and type in the URL to the...
  3. Replies
    1
    Views
    2,046

    JavaScript Function to load page

    Hello,

    I am using the following code:



    function test()
    {
    location.href = "home.htm" ;
    }
  4. Replies
    1
    Views
    1,205

    JavaScript JavaScript XMLHttpRequest

    Hello,

    I am having problems trying to get a field from a XML file.

    I can load the XML file into my browser and display it as a string but have looked everywhere and can't seem to get a value...
  5. Replies
    1
    Views
    1,545

    JavaScript Combobox text change

    Hello,

    I have the following code:



    <select id="myList">
    <option value="option1">Bob</option>
    <option value="option2">Harry</option>
    <option value="option3">Tom</option>
  6. Thread: Checkboxs

    by aaronking
    Replies
    3
    Views
    1,362

    JavaScript Checkboxs

    Hello,

    I am having a problem with some checkboxs

    what I have is a page with 17 checkboxs.

    as per below:

    [1] [2] [3]
    [4] [5] [6]
  7. Replies
    3
    Views
    3,695

    JavaScript XML and Cookies

    Hello,

    Just wondering if you can store a XML file into a Cookie?

    I have the following code:


    function setCookie(c_name,value,exdays)
    {
    var exdate=new Date();
  8. Replies
    1
    Views
    1,079

    CSS iframe not display correctly

    Hello,

    I am having problems trying to display a iframe in a window.

    When I view it on a smaller screen or even when the window is not maximized it don't display the same.

    The page scroll bar...
  9. Replies
    1
    Views
    1,371

    JavaScript view if code is on the page

    Hello,

    I am tring to find out how to detect if document.write or alert is written on the page anywhere.

    I can't seem to find a way of finding out if its in the html code or not..

    I am using...
  10. Thread: Split string

    by aaronking
    Replies
    2
    Views
    1,934

    JavaScript Split string

    hello,

    does anyone know how to split a string?

    so far I have the following:




    var string = "Hello my name is - Bob";
  11. Replies
    6
    Views
    6,148

    JavaScript Re: How to load image from another page

    Hello,

    Still have problems doing it..

    so far I can get the HTML Source of the page I want to get the data from, but can't parse the tags from the code.

    Any ideas?
  12. Replies
    6
    Views
    6,148

    JavaScript Re: How to load image from another page

    Hello,

    Thanks for pointing me to the correct way..

    I ended up creating something simple



    <script type="text/javascript">
    var testing = $.get("test.htm", function(data){
  13. Replies
    6
    Views
    6,148

    JavaScript Re: How to load image from another page

    hello,

    thanks for the feedback..

    but how would you do it with ajax?
  14. Replies
    6
    Views
    6,148

    JavaScript How to load image from another page

    hello,

    I am using JavaScript to do the following:

    I have 2 pages that I am using..

    Page 1 has all the images on it (images.htm)
    Page 2 is the page I want to display the images. (main.htm)
    ...
  15. Replies
    2
    Views
    49,208

    XMLHttpRequest on Safari

    Hello,

    I have the following JavaScript code:




    <script language="javascript">
    var xmlhttp;
    if (window.XMLHttpRequest) {
  16. Replies
    2
    Views
    1,422

    Re: Javascript Function with more then 2 dots

    Hello,

    Thanks heaps.
  17. Replies
    2
    Views
    1,422

    Javascript Function with more then 2 dots

    Hello,

    I have the following code:



    <html>
    <head>
    <script type="text/javascript">
    function product(ip,value1,value2)
  18. Replies
    3
    Views
    1,323

    JavaScript Re: Undefinded problem...

    Hello,

    I have now done the following:



    var ev_index = "001";

    if (ev_index == "001")
    {
  19. Replies
    3
    Views
    1,323

    JavaScript Undefinded problem...

    Hello,

    I have the following JavaScript:



    var ev_index = "001";

    if (ev_index == "001")
    {
  20. Replies
    7
    Views
    1,997

    Re: Help with JavaScript Code

    Hello,

    Thanks for you reply..

    I need to do this the hard way as a computer program creates this main page and my .js file (JavaScript) needs to control it.

    The User can change this from a...
  21. Replies
    7
    Views
    1,997

    Re: Help with JavaScript Code

    Sorry about if you don't understand.. me explain it a little better.

    I have a Image on a page:



    <img src="http://123.123.123.123/camera.get?image=1" alt="web image" id="img0" />

    I need to...
  22. Replies
    7
    Views
    1,997

    Re: Help with JavaScript Code

    Hello,

    Thanks for your reply.

    However, this does not work if you have a ? (question mark) in the src.

    For Example:
    If the src = http://123.123.123.123/image.get?image=1
    then it would not...
  23. Replies
    7
    Views
    1,997

    Help with JavaScript Code

    Hello,

    I have the following JavaScript:



    function reloadIt1()
    {
    var image1 = (document.getElementById("img0").src);
    image1 = image1.split('?', 2);
  24. Replies
    2
    Views
    1,421

    Re: Image Refresh from js file

    Hello,

    The 2 files are in the same place.

    The index.html is created using a computer program, which I can't edit. I need to do all my calling etc from the refresh.js file.

    That is where I...
  25. Replies
    2
    Views
    1,421

    Image Refresh from js file

    Hello,

    I have following HTML page (index.html)



    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 STRICT//EN" "DTD/xhtml1-strict.dtd">
    <HTML>
    <HEAD>
    <TITLE></TITLE>
Results 1 to 25 of 228
Page 1 of 10 1 2 3 4





Click Here to Expand Forum to Full Width

Featured