...
It is very easy to style Check-boxes using HTML and CSS3 HTML Page CSS3 .myCheckbox input { position: relative; z-index: -9999; } .myCheckbox span { width: 20px; height: 20px; display: block; background: url("link_to_image"); } .myCheckbox input:checked + span { background: url("link_to_another_image"); } HTML <label for="test">Label for my styled "checkbox"</label> <label class="myCheckbox"> <input type="checkbox" name="test"/> <span></span> </label> Razor View I tried to style the...
What Is Li-Fi ? Li-Fi technology is a ground-breaking light-based communication technology, which makes use of light waves instead of radio technology to deliver data. Coined by Prof. Harald Haas,Li-Fi is a subset of optical wireless communications and can be a complement to RF communication, or a replacement in contexts of data broadcasting. It is wireless and uses visible light communication or infra-red...
There are many ways to create an object without new operator :- 1. Using newInstance method of Class class Eg: Class clas = Class.forName("NewClass"); NewClass obj = (NewClass) clas.newInstance(); - Class.forName() loads the class and to create an object, we need to use newInstance() method of Class class. 2. Using clone() of java.lang.Object Eg: NewClass obj = new NewClass(); NewClass obj2 = obj.clone();...
What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is a markup language A markup language is a set of markup tags The tags describe document content HTML documents contain HTML tags and plain text HTML documents are also called web pages HTML Tags HTML markup tags are usually called HTML tags. HTML...













Step 1: Goto https://www.google.co.in/cse/ Step 2: Click on Sign in to Custom Search Engine from following page. Step 3: Login with google account Step 4: Click on Create A Custom Search Engine from following page. Step 5: Input website address in following On following page Specify the search engine name in following textbox On the same page. Step 6: Click on following button...
To send A email from asp.net page using SMTP protocol follow following steps: In web.config add following code <system.net> <mailSettings> <smtp> <network host="smtp.gmail.com" port="587" userName="your mail id" password="password" enableSsl="true"/> </smtp> </mailSettings> </system.net></configuration> Add a C# function to send email protected void sendMail() { try { MailMessage mailMessage = new MailMessage() { Subject = contactSubject.Text, Body = contactBody.Text , From = new...
Microsoft Certified Solutions Developer (MCSD) Certification exam Dumps
By Unknown - 5:56 PM
15.00 Normal 0 false false false EN-US X-NONE X-NONE Continue Reading