Form field values that are not run through 'PageParts' do get passed.
######## PagePart #######
Sub pagepart_getOSInstructor
with new Dropdown
Set .datasource = db.getUnlockedRS("Select FName + ' ' + LName
AS Instructor, UserID FROM tbUsers AS U, tbInstructors AS T Where
T.InstructorID=U.UserID AND T.ID='{0}' AND U.Enable='Yes'",
Request.Cookies("ID"))
.dataTextField = "Instructor"
.dataValueField = "UserID"
.commonFieldText = "-- Instructor --"
.name = "frmInstructor"
.onItemCreated = "onEncript"
.attributes = "onchange=""ajaxed.callback('getTeacher',
'Instructor')"""
.draw()
end with
End Sub
The value from this code and others like it on the same page are not
being passed to my processing page (its a whole new page)
Any suggestions.