Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
//this is a wired button event
public void Button_Click(object sender, EventArgs e)
{
var some_text = MyTextBox.Text;
//code to save some_text to database.
}
private SomeService service = new SomeService();
//this is a wired button event
public void Button_Click(object sender, EventArgs e)
{
var some_text = MyTextBox.Text;
service.Save(some_text);
}
class SomeService
{
public void Save(string text)
{
//code to save some_text to database.
}
}