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 SkipVought 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. TruthInSatire

    CFLDAP and Read only access to pages

    It's been a while but it depends on how your forest and such is setup in AD. look at the contents of memberOf, CN, and SN. the member of is the full OU, for example one of my filters reads: !(memberOf=CN=MyDomain Do Not Display,CN=Users,DC=MyDomain,DC=net) Vegans are friends, not food...
  2. TruthInSatire

    GET method form manipulation

    <cfhttp url = "http://...?#cgi.queryString#" ...> no good? Vegans are friends, not food...
  3. TruthInSatire

    GET method form manipulation

    I'm sorry, I'm not understanding your question. you want to submit a form to a .net form handler? Why doesn't the following work for you? <form method = "get" action = "http://thissite.com/dosomething.aspx"> <input type = "text" name = "value1" /><br /> <input type = "text" name = "value2"...
  4. TruthInSatire

    session variables with mobile

    I'm not sure how facebook's mobile site works and have no interest in finding out. For all I know it's passing the session token in the url. Vegans are friends, not food...
  5. TruthInSatire

    session variables with mobile

    what happens if you go to http://headsplode.com/tekTest/step1.cfm on your mobile phone? I used your cfapplication tag and tested on my iPad with safari, atomic web browser, and terra. Also tested on my Droid X with the default browser. All work fine. Vegans are friends, not food...
  6. TruthInSatire

    session variables with mobile

    ok, well does it work in a PC browser? Vegans are friends, not food...
  7. TruthInSatire

    session variables with mobile

    You should look into using application.cfc. Application.cfm is SOOO 4 versions ago. Vegans are friends, not food...
  8. TruthInSatire

    session variables with mobile

    <cfapplication name="mySiteMobile" clientmanagement="Yes" <cfapplication name="myMainSite" clientmanagement="Yes" sessions persist across a single application, with a single name. Vegans are friends, not food...
  9. TruthInSatire

    One step closer to de-&quot;flashifying&quot; the web

    You're information is a bit off. Chrome will drop NATIVE support for H.264. Meaning any html5 video using that codec. Anything that does stream H.264 will get wrapped into a Flash player which is built into chrome so users can still see the video. Chrome has to do this because it doesn't have...
  10. TruthInSatire

    session variables with mobile

    are you using CF5? If not you should be using application.cfc do you have nested folders with other application.cfm files? make sure session management is set to yes in them as well. if you're using client variables, make sure cf has valid client management configured in the administrator...
  11. TruthInSatire

    How Do I Index a Variable During a CFloop?

    or you can avoid evaluate which has a lot of overhead and use structure syntax. ex. <cfset x = evaluate("form.fieldName" & i)> would be <cfset x = form["fieldName" & i]> or <cfset x = form["fieldName#i#"]> I prefer the first alternative syntactically; however, the second option is a...
  12. TruthInSatire

    microsoft word with image, image not showing..

    I know PDF has the same problem. We work within an intranet so our solution was to do something like <img src = "file://machineName/path/goes/here/test.jpg"> to get away from using https. HTH. Vegans are friends, not food...
  13. TruthInSatire

    Fetch message from another page

    according to bennadel.com http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/servlet/jsp/PageContext.html what are you trying to do? show hello world in a cfm page by including a jsp? you can use cfhttp if all else fails. Vegans are friends, not food...
  14. TruthInSatire

    cffileupload question

    Sadly I don't have 9 installed yet but try doing a cfcump of cffile and see what's available. the docs page doesn't provide a list of return variables such as cffile.serverfile. I would assume cffile.serverFile may be an array containing the file names. Let me know...
  15. TruthInSatire

    Do something based on selection from a list

    Actually, after moving setAjax() to a .js it's about the same, at least for this example. It's preference really. I've never been a fan of frameworks (although I do see jQuery's strengths and it's the popular choice for a reason, I dig that). Most of my clients run in a javascript free...
  16. TruthInSatire

    Do something based on selection from a list

    You don't need to use jQuery to use ajax if you don't want to get into another framework. Straight JS works, but it's a bit longer winded to write yourself. <script language = "javascript"> function setAjax(){ //Create AjaxObject var xmlHttp; try{ // Firefox, webkit xmlHttp=new...
  17. TruthInSatire

    Do something based on selection from a list

    I'm not sure about spry either; however in looking at adobe's example I don't see any kind of a event handler in your code (onChange, onClick, et cetera) here is the example adobe has for spry:setRow, you'll notice the onclick event handler...
  18. TruthInSatire

    Do something based on selection from a list

    well, I've already given you some clues if you researched any of what I was asking. You'd learn what ajax is and probably stumble on w3schools that has a very comprehensive tutorial. however, you haven't answered my question. If you want to submit back to the same page you'd look for the form...
  19. TruthInSatire

    Do something based on selection from a list

    If you want to do all that without submitting the page back to the server you'll want to use ajax. you can also submit back to the same page so it's the same page but made a request to the server for the additional information. which is your goal? Vegans are friends, not food...
  20. TruthInSatire

    Do something based on selection from a list

    You could do it a couple ways. you could use a javascript to get the value and display the image or you could submit the form back to the server and refresh the page. which would you like to do? Vegans are friends, not food...

Part and Inventory Search

Back
Top