Skip to main content

Posts

Showing posts from 2007
Css galley list CSS Drive CSS Vault CSS Beauty CSS Import CSS Galleries CSS Elite Unmatched Style W3C Sites CSS Website CSS Mania CSS Reboot CSS Design Yorkshire CSS Bloom Creative Pakistan CSS Brain Webdigity CSS Gallery Screenfluent CSS Container iSquare CSS Tux CSS Blast CSS Green CSS Clip CSS Collection CSS Demo CeeSes Cesko CSS Galerie CSS Galaxy CSS Fill CSS Hazard CSS Heaven CSS Princess CSS Remix CSS Smooth Operator CSS Thesis CSS Zen Garden Design Shack Liquid Designs Piepmatzel Proestilo Showcase GR Standards Reboot Style Crunch Stylegala Crea.tv CSS Gallery Romania CSS Gallery CSS Love The Daily Slurp Screenalicio.us Style The Web

ASP.NET Interview Questions

ASP.NET 2.0 Interview Questions – Beginner Level The Q&A mentioned over here have been taken from forums, my colleagues and my own experience of conducting interviews. I have tried to mention the contributor wherever possible. If you would like to contribute or you think that a credit for a contribution is missing somewhere, kindly contact me and I will do the needful. What is ASP.NET? Microsoft ASP.NET is a server side technology that enables programmers to build dynamic Web sites, web applications, and XML Web services. It is a part of the .NET based environment and is built on the Common Language Runtime (CLR) . So programmers can write ASP.NET code using any .NET compatible language. What are the differences between ASP.NET 1.1 and ASP.NET 2.0? A comparison chart containing the differences between ASP.NET 1.1 and ASP.NET 2.0 can be found over here . Which is the latest version of ASP.NET? What were the previous versions released? The latest version of ASP.NET is 2.0. T

Many ways to get your application path

// The following returns the application executable path with exe name Console.WriteLine(System.Environment.CommandLine); // or Console.WriteLine(System.Windows.Forms.Application.ExecutablePath); // or Console.WriteLine(System.Reflection.Assembly.GetExecutingAssembly().Location); // The following returns just the application executable path Console.WriteLine(System.Environment.CurrentDirectory); // or Console.WriteLine(System.IO.Directory.GetCurrentDirectory()); // or Console.WriteLine(System.Windows.Forms.Application.StartupPath); // or Console.WriteLine(System.AppDomain.CurrentDomain.BaseDirectory); // or Console.WriteLine(System.Reflection.Assembly.GetExecutingAssembly().CodeBase);

Send Email programmatically using your Gmail account

protected void btnSendEmail_Click(object sender, EventArgs e) { // Create Mail Message Object with content that you want to send with mail. System.Net.Mail.MailMessage MyMailMessage = new System.Net.Mail.MailMessage("dotnetguts@gmail.com","myfriend@yahoo.com", "This is the mail subject", "Just wanted to say Hello"); MyMailMessage.IsBodyHtml = false; // Proper Authentication Details need to be passed when sending email from gmail System.Net.NetworkCredential mailAuthentication = new System.Net.NetworkCredential("dotnetguts@gmail.com", "myPassword"); // Smtp Mail server of Gmail is "smpt.gmail.com" and it uses port no. 587 // For different server like yahoo this details changes and you can // Get it from respective server. System.Net.Mail.SmtpClient mailClient = new System.Net.Mail.SmtpClient("smtp.gmail.com",587); // Enable SSL mailClient.EnableSsl = true; mailClient.Us