Posts

Showing posts from March, 2014

CSS Menu Using Float

<html> <head> <style> b{float:left; background-color:gold; width:100px; height:30px; font-size:18pt; font-family:calibri; color:black; text-align:center; margin-left:10px; border-bottom:solid; border-color:black; border-top:solid; } b:hover{float:left; background-color:deeppink; width:100px; height:100px; font-size:28pt; font-family:calibri; color:black; text-align:center; border-right:solid; border-left:solid; border-color:black; } </style> </head> <body> <b>Home</b> <b>Music</b> <b>Video</b> <b>Movie</b> <b>Login</b> <b>Signin</b> </body> </html>

Useful Website

http://0catch.com http://www.freeweb7.com  http://Ripway.com{Recommended}  http://www.110mb.com  http://www.phpnet.us  http://www.byethost.com  http://www.t35.com  http://www.awardspace.com  http://www.free-webhosts.com/free-php-webhosting.php  http://www.freehostia.com  http://www.dajoob.com  http://ifastnet.com  http://007ihost.com  http://www.247mb.com/register.jsp  http://www.10gbfreehost.com/  http://ophcrack.sourceforge.net http://www.hirensbootcd.net/download.html

List of Diagram 4 Master Degree Project Report

Data Flow Diagram (0 Level) Data Flow Diagram (1 Level) ER Diagram Use Case Diagram Class Diagram Sequence Diagram Activity Diagram More...

UseCase DiaGram 4 Project

Image

Get Browser Name, Version & Platform in ASP.Net

Response.Write(System.Web.HttpContext.Current.Request.Browser.Browser.ToString()); Response .Write(System.Web.HttpContext.Current.Request.Browser.Version.ToString()); Response.Write(System.Web.HttpContext.Current.Request.Browser.Platform.ToString());

Video Play in ASP.Net

<body>     <form id="form1" runat="server">     <div>     <video width="320" height="240" controls>   <source src="abc.mp4" type="video/mp4">   <source src="movie.ogg" type="video/ogg">   Your browser does not support the video tag. </video>     </div> </form> </body>

Send Mail Using ASP.Net

public static bool Send(string ToAddr, string Subject, string Body)     {         try         {             MailMessage Msg = new MailMessage();             Msg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpserver", "smtp.gmail.com");             Msg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpserverport", "465");             Msg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusing", "2");             Msg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", "1");             Msg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername", "youremail@gmail.com");             Msg.Fields.Add("http://schemas.microsoft.com/cdo/configurat...