Hello boys

i want to create a wicket page that can be send via email, this page
is a typical confirm acount  page that is send to new users in a web
application

any ideas to get the html of a page in a form submition

i think in samething like this

public void onSubmit()
{
     ConfirmationPage page=new ConfirmationPage(parameters);
     String htmlBuffer=page.getRenderString();
    // TOOD Send htmlBuffer via email
}

A problem to do this is that links url must be absoulte and actualy
all are relative it can  be solved overloading a method in links but
can be util get this functionality inside wicket core

link.setUseAbsoulteURL(true);
a default to false like now


-------------------------------------------------------
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to