how can i pass the value of my querystring into javacript ? that mean get the querystring on curent windows value and pass it into javascript to open a new page.
ex.: /FicheClient.aspx?Item=Tarif&Id=850001
i want to pass Id=850001 into window.open('Tarif_Report.aspx?Id=????')
<dx:ASPxButton ID="ASPxButton_RptTarif" runat="server" Text="Voir" AutoPostBack="False">
<ClientSideEvents
Click="function (s, e) { e.processOnServer = false; window.open('Tarif_Report.aspx?Id=????'); }" />
</dx:ASPxButton>
thanks you in advance. Stev