I'm writing an aspx to let users check the filename and create a file with that name
the url is
/sites/usitp/_layouts/CreateWebPage.aspx?List=%7b74AB081E-59FB-45A5-876D- 284607DA03C6%7d&RootFolder=%3bText=%27SD_RMDS%27 how can I parse the parameter 'Text' and show in the textbox?
<div> <asp:TextBox id="Name" runat="server" /> </div> the aspx text box is this, I tried
<asp:TextBox id="Name" runat="server" text=<%$Request.QueryString['Text']%>></asp:TextBox>> but it didn't work
anyone can help me out?