www.webdeveloper.com

Search:

Type: Posts; User: Khalid Ali

Page 1 of 5 1 2 3 4

Search: Search took 0.15 seconds.

  1. Replies
    1
    Views
    228

    Eclipse will not go away with android studio, at...

    Eclipse will not go away with android studio, at least not with android studio's current state....
  2. Replies
    1
    Views
    192

    look at this line java.lang.NoSuchMethodError:...

    look at this line
    java.lang.NoSuchMethodError: org.springframework.core.io.ResourceEditor.<init>(Lorg/springframework/core/io/ResourceLoader;Lorg/springframework/core/env/PropertyResolver;)
    I bet...
  3. Unless craigslist admin offers an sdk to perform...

    Unless craigslist admin offers an sdk to perform such tasks, it is not recommended to write or use any tools which can mimic web page activities. Your best bet would be to contact them and find out...
  4. Replies
    2
    Views
    831

    I would try the following set the encoding...

    I would try the following
    set the encoding before the execution of your code
    e.g
    <% request.setCharacterEncoding("utf-xx"); %>//replace xx that represents your language
    <%@include...
  5. Replies
    1
    Views
    572

    are u getting any errors? if so pls post those,...

    are u getting any errors? if so pls post those, if no errors then chances are there is nothing to write
  6. First item to check is if your query returning...

    First item to check is if your query returning any data, runt from mysql tools and see if it does....
  7. u can use a hidden field and put the value in...

    u can use a hidden field and put the value in that and when you submit the form back to ur jsp, value will be in your jsp.
    Or you can create a url and attach a parameter (name=value) that way you...
  8. Its been a while that I worked with this stuff,...

    Its been a while that I worked with this stuff, but I think your problem is in tht all of your controls are disabled, set them readonly and try again
  9. Replies
    2
    Views
    748

    what do you mean by "but data is not properly...

    what do you mean by "but data is not properly inserted", can you please elaborate a bit?
  10. Here is the logic In your jsp page when user...

    Here is the logic
    In your jsp page when user submits the story, you save the time on the server side with the story, then when you print the results back, you have stimestamp for each story which...
  11. problem has to be with the following part...

    problem has to be with the following part
    if(data[m] != Math.min(data[m], data[m+1])
    m+1 goes out of bounds. Look into it and make sure why you have to do m+1, if you must then you have check the...
  12. Thread: Parameters

    by Khalid Ali
    Replies
    2
    Views
    1,208

    that depends if you are submitting the page...

    that depends if you are submitting the page correctly?
    Are u submitting through a url? or a form, show more code here
  13. Replies
    3
    Views
    1,272

    I think u want to say when !vusername.equals("")...

    I think u want to say when !vusername.equals("")
    instead, which would mean you are checking for
    when user is not null and user is not empty
  14. if you remove the preceding 0x then int dec =...

    if you remove the preceding 0x then
    int dec = Integer.parseInt("1E",16);
    will result in dec=30
    You can use the above on a string of ex values dec value can be converted to char if needed
  15. that's is it, you need to look for use agent...

    that's is it, you need to look for use agent string and based upon that redirect to appropriate pages
  16. did u mean something like this? int hex = 0x1E;...

    did u mean something like this?
    int hex = 0x1E;
    =30
    ?
    or you have a string of characters which you want to convert to a hex string such as if I converted my first name Khalid to hex it would be ...
  17. Thread: Java Editor

    by Khalid Ali
    Replies
    2
    Views
    1,236

    Eclipse is free and extremely popular, I use...

    Eclipse is free and extremely popular, I use IntelliJ which is amazing tool but not free.
  18. What is the exception? For some basic java and...

    What is the exception?
    For some basic java and mysql setup issues and there resolutions, please read the sticky it the top of this forum
    Troubleshooting guide for some basic....
  19. Replies
    4
    Views
    1,401

    If you still haven't found solution, here are...

    If you still haven't found solution, here are some suggesntions
    First: are you in the same folder where your newly created class TwoArgsApp.class file is?

    As compiler clearly can't find that...
  20. Replies
    16
    Views
    2,891

    read up on navigator.platform

    read up on navigator.platform
  21. server side always executes first, if you are...

    server side always executes first, if you are using Firefox go to C+Shift+J
    this will bring up javascript error console, clear the console, then reload your page and see which error is being...
  22. Replies
    1
    Views
    531

    if I understand you correctly, you already are...

    if I understand you correctly, you already are able to make changes to the div (ref. the relative content appears on right column) if so than most of your work as already done. At this point you...
  23. AJAX you probably need to show the full code it can be...

    you probably need to show the full code it can be troubleshooted. if its not used in its entirety it seem to work in FF
  24. Replies
    2
    Views
    1,632

    AJAX you will have read the url on the second page,...

    you will have read the url on the second page, get the variable and then display, it won't automatically show up in the next page (this is presuming your AJAX code is actually sending request to this...
  25. sounds like a path problem, this is how you can...

    sounds like a path problem, this is how you can confirm e.g
    http://stevenfoundling.com/images/Thumbnails/TP-2B.png
    if I click on above image, you know which image should be displayed, so put this...
Results 1 to 25 of 119
Page 1 of 5 1 2 3 4
HTML5 Development Center



Recent Articles