I generaty some Links dynamicly like this:
protected void renderComponent ( IMarkupWriter writer ,IRequestCycle
cycle) {
int n = 10;
for( int i = 1; i <= n ; i++ ){
writer.begin("component");
writer.attribute("name","showSiteLink");
writer.begin("a");
writer.attribute("href","link"+i);
writer.end();
writer.end();
}
}
So How can I get the current link I clicked, at runtime? I need it,
because I want to do diffrent thinks for.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]