...the way I did that - learning through examples...

воскресенье, 17 января 2010 г.

Save cookie sample




When a user visits your website, you can use cookies to store user login (storing a password is unsecure!) or user preferences or other information. When the user visits your Web site another time, the application can retrieve the information it stored earlier.

This sample shows how to save cookie and how to retrive it when you visit site another time.

protected void Page_Load(object sender, EventArgs e)
{
if (Request.Cookies["MyCookie"] != null)
txtSavedCookie.Text = "Cookie is: " + Request.Cookies["MyCookie"].Value;
else
txtSavedCookie.Text = "No cookies!";
}

protected void btnSaveCookie_Click(object sender, EventArgs e)
{
HttpCookie cookie = new HttpCookie("MyCookie", txtCookieValue.Text);
Response.AppendCookie(cookie);

txtResult.Text = "Cookie saved!! Close this site and open it again - you will see saved cookie value at the top of this page!";
}

All our simple samples available as Microsoft Visual Studio 2008 website projects.
You can DOWNLOAD this Save cookie sample project from Rapidshare.

DateTime sample




If you want to display current date or time on the website you can use DateTime.Now property.
This sample shows how to display it using 5 different formats.

protected void Page_Load(object sender, EventArgs e)
{
Label1.Text = DateTime.Now.DayOfWeek.ToString();//return the current day of week
Label2.Text = DateTime.Now.ToLongDateString(); //return the "long date"
Label3.Text = DateTime.Now.ToShortDateString(); //return the "short date"
Label4.Text = DateTime.Now.ToLongTimeString(); //return the "long time"
Label5.Text = DateTime.Now.ToShortTimeString(); //return the "short time"

}

All our simple samples available as Microsoft Visual Studio 2008 website projects.
You can DOWNLOAD this DateTime sample project from Rapidshare.