Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
object o = cmd.ExecuteScalar();
int iRetValue = o == null ? -1 : (int)o;
textBox1.Text = string.Format("{0:c}", iRetValue);
double dRetValue = o == null ? -1 : (double)o;