­
­

John Papa 10 AngularJS Patterns:Code on the Beach 2014

By Unknown - 1:17 PM
  • Share:

Styling Check-box using CSS3, JQuery in Html page and Razor View

By Unknown - 9:02 PM
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...

Continue Reading

  • Share:

Li-Fi Technology Is Coming Soon...

By Unknown - 9:00 PM
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...

Continue Reading

  • Share:

How do you create an Object instance without using new?

By Unknown - 1:25 AM
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();...

Continue Reading

  • Share:

Getting Started With HTML And CSS

By Unknown - 10:46 AM
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...

Continue Reading

  • Share:

Creating Google Custom Search : A Step by Step Appeoach

By Unknown - 11:24 AM
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...

Continue Reading

  • Share:

Sending Email From Asp.Net Page

By Unknown - 6:15 PM
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...

Continue Reading

  • Share:

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

  • Share: