Musterklausur Webtechnologien, SoSe 2016 1. Beispiel Erstellen eines neuen Projektes Datum o var currentDateTime = DateTime.Now; o <p>Das aktuelle Datum ist: @currentDateTime</p> Title o Page.Title="Home"; o <title>@Page.Title</title> 2. Beispiel Array o Anzeige des Inhalts als Liste o Anzeige des Inhalts als Tabelle 3. Beispiel Übertragen eines Inhalts auf einer neuen Seite o Input="text" Mit id required pattern o Immer mit submit-Schalter if(Request.QueryString["input"].IsEmpty() ) {…} siehe Beispiel 4 1 4. Beispiel Übertragen eines Inhalts auf einer neuen Seite o mehrere input="text" Mit id required pattern o ComboBox / number / Range o Immer mit submit-Schalter if(Request.QueryString["input"].IsEmpty() ) {…} siehe Beispiel 5 5. Beispiel 2 6. Beispiel Datenbanken o Erstellen einer Datenbank o Eintragen der Werte Formulare o Tabelle o var sql = "SELECT * FROM FB where pindex="+App.fb; o var fb = db.Query(sql); o <tr> o <th>@fb[0].Columns[0]</th> o <th>@fb[0].Columns[1]</th> o <th>@fb[0].Columns[2]</th> o </tr> o <tr> o <td>@fb[0][0]</td> o <td>@fb[0].Kurzname</td> o <td>@fb[0].Langname</td> o </tr> o o <tr> o @foreach (var col in fbSingle.Columns) { o <th>@col</th> o } o </tr> o <tr> o @for (int i=0; i<fbSingle.Columns.Count; i++) { o <td>@fbSingle[i]</td> o } o </tr> Response.Redirect("~/view/PageViewFB"); 3