Öffnet ein Info-Popup im Browser
String csname1 = "PopupScript";
Type cstype = this.GetType();
ClientScriptManager cs = Page.ClientScript;
if (!cs.IsStartupScriptRegistered(cstype, csname1)) {
String cstext1 = "alert('Standardbenachrichtigungen wurden erfolgreich erstellt');";
cs.RegisterStartupScript(cstype, csname1, cstext1, true); }