i have page as view category and on that page there is category name,image name and url get display an that view category page there is also edit button now i want to edit category name,image name and url for that i need to pass that three values to another page as editpage, category name and url read in following code: firstly i want to pass image name to editpage for i tried like:
<form Name="frmEdit" method="post" action="<%=Request.ServerVariables("PATH_INFO")%>">
<!--for edit-->
<td align="left" valign="top" class="text">
<input type="hidden" name="fileId1" value=.<%=mid(FileName.Path,instrrev(FileName.Path,"\")+1)%>">
<div class="btn"><input type="submit" name="AskEdit" value="Edit" style="margin-bottom:-10px"></div>
</td>
</form>
and to pass value:
if Request.Form("AskEdit") = "Edit" then
response.Redirect("edit_category.asp?fid=" & fileId1)
end if
but i getting error for this response.Redirect("edit_category.asp?fid=" & FieldID line
so please help me,