sangeet302
07-03-2002, 09:41 AM
I am creating an ecommerce site based on Microsoft
Reference Architechture V2. It uses pasp files instead of
ASP.
The problem i am facing is pasp does not able to get the
values from the AppFramework object when i submit the form
using GET method.
Please help me in solving this problem
Dim strCategoryName ' temporary store of the category name
Dim strCatalogName ' temporary storage fo the catalog name
strCatalogName = Application
("MSCSAppFrameWork").RequestString("txtCatalog", Null, , ,
True, True, 0, Null) ' catalog name (required)
strCategoryName = Application
("MSCSAppFrameWork").RequestString("txtCategory",
Null, , , True, True, 0, Null) ' category name (optional)
' to browse a catalog, this page requires the catalog name
to be posted to this page.
If IsNull(strCatalogName) Then
Response.Redirect "Index.pasp"
End If
It always redirected to index.pasp as value in
strCatalogName is null. I am specifiyng correct parameters
in the Query string
This is an pasp file
Reference Architechture V2. It uses pasp files instead of
ASP.
The problem i am facing is pasp does not able to get the
values from the AppFramework object when i submit the form
using GET method.
Please help me in solving this problem
Dim strCategoryName ' temporary store of the category name
Dim strCatalogName ' temporary storage fo the catalog name
strCatalogName = Application
("MSCSAppFrameWork").RequestString("txtCatalog", Null, , ,
True, True, 0, Null) ' catalog name (required)
strCategoryName = Application
("MSCSAppFrameWork").RequestString("txtCategory",
Null, , , True, True, 0, Null) ' category name (optional)
' to browse a catalog, this page requires the catalog name
to be posted to this page.
If IsNull(strCatalogName) Then
Response.Redirect "Index.pasp"
End If
It always redirected to index.pasp as value in
strCatalogName is null. I am specifiyng correct parameters
in the Query string
This is an pasp file