tommyebgoochb
New Member
In asp I was able to pass a value to a web page holding three frames, using request.querystring to capture the value at the parent stage and then pass it to the three frames were they are called on the parent page. Now how can I do this in asp.net, Please help<BR><BR><BR>ASP code:<BR><frameset rows="30%,70%"><BR> <frame src=http://aspmessageboard.com/archive/index.php/"ExistRFQView.asp" name="viewERFQ" frameborder="0"><BR> <frameset cols="65%,35%"> <BR> <frame src="RFQAddSelection.asp?RFQNumber=<%=Request.Querystri ng("RFQNumber")%>" name="addRFQ" frameborder="0"><BR> <frameset rows="50%,50%"><BR> <frame src="ExistJOBView.asp?RFQNumber=<%=Request.Querystring("RFQNumber")%>" name="ViewJOB" frameborder="0"><BR> <frame src="ViewUnitCost.asp?RFQNumber=<%=Request.Querystring("RFQNumber")%>" name="ViewUnitCost" frameborder="0"><BR></frameset><BR><BR>ASP.NET Code ?In asp.net you do not use request.querystring any longer. Use this instead<BR><BR>=request.params("querystringvalue")