Die Frage ist natürlich berechtigt:
Der Vorteil daraus ist das der link automatisch berechnet ist:
@URLOpen("/"+@WebDbName+"/Infoboard?OpenForm&Category="+ @UrlQueryString(@UpperCase("RESTRICTTOCATEGORY")))
Und ich die Button so gemacht habe: (Codestore.net-mäßig)
<button type="button" class="button" onclick="newdoc()"><img src="/db_name/edit.gif"> dynamisch mit computed value</button>
und ich leider nicht weiß wie ich bei onclick den Code vom link hineinbekomme, dadurch hab ich es mit der Function newdoc() gemacht und das ist mehr aufwand?
function newdoc()
{
if ( f.Form.value == 'Contacts') window.location.replace("/"+ f.db_name.value +"/Contacts?OpenForm");
else if ( f.Form.value == 'Hyperlinks') window.location.replace("/"+ f.db_name.value +"/Hyperlinks?OpenForm");
else if ( f.Form.value == 'Infoboard') window.location.replace("/"+ f.db_name.value +"/Infoboard?OpenForm");
else if ( f.Form.value == 'InfoboardCat') window.location.replace("/"+ f.db_name.value +"/Infoboard?OpenForm&Category=" + f.Category.value);
else window.location.replace("/"+ f.db_name.value +"/Main Topic?OpenForm");
}
Oder gibt es da etwas besseres?