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...
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"...
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...
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...
<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...
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...
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...
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...
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...
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...
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...
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...
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.