Form values not passing

13 views
Skip to first unread message

ItHurtsWhenIThink

unread,
Mar 28, 2010, 8:39:51 PM3/28/10
to asp-ajaxed
values from my form page are not being sent to the page that processes
the form.

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.

Reply all
Reply to author
Forward
0 new messages