Can I combine classic ASP and ASP.NET pages
No. ASP pages can run in the same site as ASP.NET pages, but you can’t mix in a page. Also ASP and ASP.NET won’t share their session.
How to convert TextBox value into a DateTime variable
VB.NET Dim dt As DateTime = DateTime.Parse(TextBox1.Text) C# DateTime dt = DateTime.Parse(TextBox1.Text); By default Date.Parse check the date as MDY format Refer DateTime.Parse for a specified Date Format.
Is there a control in ASP.NET for getting HTML like the ASPHTTP for the classic asp.
Use System.Net.HttpWebRequest
How to delete a file from the server?
VB.NET System.IO.File.Delete(Server.MapPath(‘wnew.txt’)) C# System.IO.File.Delete(Server.MapPath(‘wnew.txt’)) Make sure that you have permissions to delete a file.
How do I specify the Japanese locale for the controls in my Japanese localized page?
Just set the locale to Japanese in the Page directive. i. e Set the Culture= ‘ja-JP’ for the Page Directive. ASP.NET pages support Culture and UICulture attributes to support independent localized pages. Controls on pages can pick the culture of the page and can render culture-dependent content.