dotnet xml:
I have an customerdetail.xsl sheet
----------------------------------------------------------
<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="
http://www.w3.org/1999/XSL/Transform"> <xsl:param name="customer_number"></xsl:param>
<xsl:template match="customerlist">
<html>
<body>
<table border="1" frame="box">
<xsl:for-each
select="mag_customer[@customer_number=$customer_number]">
<tr>
<TH>Customer</TH>
<td><xsl:value-of select="@customer"/></td>
</tr>
<tr>
<TH>Address</TH>
<td><xsl:value-of select="@address"/></td>
</tr>
<tr>
<TH>Telephone</TH>
<td><xsl:value-of select="@telephone"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
my customerdetail.aspx code is like this
---------------------------------------
<%@ Page Language="VB" AutoEventWireup="false"
CodeFile="CustomerDetails.aspx.vb" Inherits="CustomerDetails" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="
http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
<asp:Xml ID="Xml1" runat="server"
DocumentSource="~/App_Data/customerlist.xml"
TransformSource="~/App_Data/customerdetail.xsl"></asp:Xml>
</form>
</body>
</html>
i also have customer.aspx file(witch will redirect to
customerdetails.aspx as long as user selected a customer number) and
inside i have the "customer_number" paramaters,my question is from
customer.aspx how do i pass the customer_number value to
cusomerdetails.aspx and further to the customerdetail.xsl?
thanks