hello -
i have a select case set up like so:
i seem to be able to successfully get a value back for strExtensionId when the case is "", but always seem to get a null value when trying to retrieve that same value in the "update" case.
what am i missing?
thanks!!!
i have a select case set up like so:
Code:
select case ucase(actionmode)
'first time user loads page
CASE ""
strExtensionID = Request.QueryString("NoteExtensionId")
CASE "update"
strExtensionID = Request.QueryString("NoteExtensionId")
end select
i seem to be able to successfully get a value back for strExtensionId when the case is "", but always seem to get a null value when trying to retrieve that same value in the "update" case.
what am i missing?
thanks!!!