1
I’m modifying a form in Sharepoint and want to get the parms that are being passed in the url, someone has a suggestion?
<xsl:element name='a'>
<xsl:attribute name='href'>
http://smallserver:777/tools/geraDoc2.aspx?
<xsl:value-of select="parametroComNomeDeIDqueEstáNaURL" />
</xsl:attribute>
But Location="Querystring(Idselected) <-- is my parameter name??
– Rogers Corrêa
@Rogerscorrea Parameterbinding will get the value of your Querystring and then transform it into a Parameter that you can then consume.
– OnoSendai
For example my parm is ID, so that’s what goes inside the Querystring?
– Rogers Corrêa
Blza got it! now I just have a problem, how do I put this value on screen? use xsl:value:of?
– Rogers Corrêa