cfapplication stop bind function ?
Sorry i face a problem here with bind.
<cfinput type="text"
name="Name"
maxlength="100"
size="30"
required="yes"
message="Restaurant name is required!"
validateAt="onSubmit, onServer"
autosuggest="cfc:Restaurants.LookupRestaurant({cfautosuggestvalue})">
If just run this single file, the autosuggest or bind is working , i can get the result.
But after i add an application.cfm , start with
<cfapplication name="cfcentral"
sessionmanagement="true"
sessiontimeout="#CreateTimeSpan(0,0,30,0)#"
/>
<cfset application.dsname="suman">
<cfset request.dsname="suman">
<cfset session.profile=StructNew()>
T.T then my big problem happen , the autosuggest or bind is no more function. i have use cflogin in the application.cfm
Please help me . . . .