Response.Redirect Problemhttp://forums.asp.net/t/1800437.aspx/1?+Response+Redirect+ProblemSat, 05 May 2012 14:45:42 -040018004374967047http://forums.asp.net/p/1800437/4967047.aspx/1?+Response+Redirect+Problem Response.Redirect Problem <p>The following coed work fine when Page.aspx locate in the root but I want to create another folder called Brands and put the pages inside it</p> <pre class="prettyprint">Response.Redirect(ddlbrand.SelectedValue &#43; &quot;.aspx&quot;)</pre> <p></p> 2012-05-05T14:36:27-04:004967057http://forums.asp.net/p/1800437/4967057.aspx/1?Re+Response+Redirect+ProblemRe: Response.Redirect Problem <pre class="prettyprint">Response.Redirect(&quot;~/Brands/&quot; &#43; ddlbrand.SelectedValue &#43; &quot;.aspx&quot;)</pre> 2012-05-05T14:43:40-04:004967058http://forums.asp.net/p/1800437/4967058.aspx/1?Re+Response+Redirect+ProblemRe: Response.Redirect Problem <p></p> <blockquote><span class="icon-blockquote"></span> <h4>Ken Tucker</h4> <p></p> <pre class="prettyprint">Response.Redirect(&quot;~/Brands/&quot; &#43; ddlbrand.SelectedValue &#43; &quot;.aspx&quot;)</pre> <p></p> </blockquote> <p></p> <p>s u will try this Ken answer...</p> <p>thanks...</p> <p></p> 2012-05-05T14:45:42-04:00