G
Guest
How in ASP.Net does one alter Current DataGrid Coding Below to create a URL
that allows for multiple parameters?
I need to Post Multiple URL Paramaters via a Single URL for example :
test.aspx?test=1&Next=2
Where: test= Databind Result
Next= Paramater Passed from QueryString or Other Variable
Current Datagrid Coding
<ASP
ataGrid id="MyDataGrid" runat="server" Width="800"
BackColor="#ccccff" BorderColor="black" ShowFooter="false" CellPadding="3"
CellSpacing="0"
Font-Name="Verdana" Font-Size="8pt" HeaderStyle-BackColor="#aaaadd"
DataKeyField="recipe_number">
<Columns>
<asp:HyperLinkColumn
DataNavigateUrlField="Test_number"
DataNavigateUrlFormatString="test.aspx?num={0}"
Text="Get Details" />
</Columns>
</ASP
ataGrid>
that allows for multiple parameters?
I need to Post Multiple URL Paramaters via a Single URL for example :
test.aspx?test=1&Next=2
Where: test= Databind Result
Next= Paramater Passed from QueryString or Other Variable
Current Datagrid Coding
<ASP
BackColor="#ccccff" BorderColor="black" ShowFooter="false" CellPadding="3"
CellSpacing="0"
Font-Name="Verdana" Font-Size="8pt" HeaderStyle-BackColor="#aaaadd"
DataKeyField="recipe_number">
<Columns>
<asp:HyperLinkColumn
DataNavigateUrlField="Test_number"
DataNavigateUrlFormatString="test.aspx?num={0}"
Text="Get Details" />
</Columns>
</ASP