D
David C
I have an aspx page that contains an iframe where I point to another aspx
page. In the aspx page that is in the iframe, I have VB code as follows:
<script language="vb" runat="server">
Dim strFolder As String = Request.QueryString("fldr").ToString
Dim PathVar As String = Server.MapPath("/wafgo/Pictures") & "\" & strFolder
& "\"
</script>
The Request.Querystring line is failing with the error Request is not
available in this context
I'm trying to pass the page a folder path and I don't know how else to do
it. I'm open to ideas. Thanks.
David
page. In the aspx page that is in the iframe, I have VB code as follows:
<script language="vb" runat="server">
Dim strFolder As String = Request.QueryString("fldr").ToString
Dim PathVar As String = Server.MapPath("/wafgo/Pictures") & "\" & strFolder
& "\"
</script>
The Request.Querystring line is failing with the error Request is not
available in this context
I'm trying to pass the page a folder path and I don't know how else to do
it. I'm open to ideas. Thanks.
David