Tag: Development

Community

Using Calendar Control in ASP.NET

(Sivaraman Dhamodaran) The Calendar control in ASP.Net allows you to pick a date. Why do we need a control like this for picking a date that involves navigation when it is easy to type the date in a specific format on a textbox? Well, a Calendar control is usually used as a calendar and the control

Community

Encrypting Query Arguments

(Jonathan Wood) When passing variables between pages in ASP.NET, you have a few techniques you can choose from. One of the simplest is to use query arguments (e.g. http://www.domain.com/page.aspx?arg1=val1&arg2=val2). In ASP.NET, query arguments are easy to implement and use.