Bài đăng

Download Microsoft .NET FrameWork 4.5 Full Offline 2014 cho Windows 7 theo tinhte.vn

Hình ảnh
http://www.tinhte.vn/threads/download-microsoft-net-framework-4-5-full-offline-2014-cho-windows-7.2262424/ Microsoft .NET Framework là một nền tảng lập trình tập hợp các thư viện lập trình. Giúp các ứng dụng chạy trên nền .Net hoạt động tốt. Bộ cài Offline Installer Full giúp bạn cài đặt mà ko cần có kết nối internet, .NET Framework 4.5 là một bản cập nhật mới nhất cho bản 4.0 ​ .Net Framework 4.5 đã có sẵn trong Windows 8 và Windows server 2012 nên nếu bạn đang dùng 2 HĐH này, bạn không cần cài nữa ​ System requirements Supported operating systems: Windows 7 Service Pack 1, Windows Server 2008 R2 SP1, Windows Server 2008 Service Pack 2, Windows Vista Service Pack 2 Hardware Requirements: 1 GHz or faster processor 512 MB of RAM 850 MB of available hard disk space (x86) 2 GB hard drive (x64) Download NET Framework 4.5.1 Setup (Full Package)  Dowload 32bit và 64bit versions NET Framework 4.5 Setup (Full Package)  Dowload 32bit và 64bit versions NET Framework 4.0 Setup

Start Appcmd.exe (IIS 7)

Hình ảnh
http://technet.microsoft.com/en-us/library/cc730918(v=ws.10).aspx Applies To: Windows 7, Windows Server 2008, Windows Server 2008 R2, Windows Vista Open Appcmd.exe if you want to configure IIS 7 settings by using a command-shell window. Appcmd.exe resides in the %windir%\system32\inetsrv directory, which is available only to the Administrator account or to users who are members of the Administrators group on the computer. In addition, members of the Administrators group must start Appcmd.exe with elevated permissions to view and change settings in the server-level configuration files: Machine.config, the root Web.config file (in the .NET Framework directory), and in ApplicationHost.config. Users who view or change Web.config files in site or application directories must have access to read and write to files in those directories. Note If you are running 64-bit Windows, use Appcmd.exe from the %windir%\system32\inetsrv directory, not the %windir%\syswow64\inetsrv directory.

List / detail views with MVC 3 and AJAX

http://community.composite.net/Blog/2011/01/25/Listdetail-views-with-MVC-3-and-AJAX In my quest to master Razor I tried to get a list/detail view up and running spiced up with a dash of AJAX and it turned out to be surprisingly easy – the code needed is available below. I used the OmniCorp demo site for this spike and the code is using the 'News' data type from that site – if you want to duplicate this behavior you should update the name space references to 'Omnicorp.Content' and the 'News' type and it's fields. Here are the steps needed to replicate this sample: Set up a OmniCorp demo site and install the MvcPlayer – this process is described in a previous blog post. Copy in the controller class below (to your ~/App_Code folder) Create the folder ~/Views/News and copy in the two views shown below. Add an instance of the MvcPlayer function to a page and specify "/News" as path – save, publish and browse to your test page to

HTML Colors

http://www.w3schools.com/html/html_colors.asp Color Values CSS colors are defined using a hexadecimal (hex) notation for the combination of Red, Green, and Blue color values (RGB). The lowest value that can be given to one of the light sources is 0 (hex 00). The highest value is 255 (hex FF). Hex values are written as 3 double digit numbers, starting with a # sign. Color Examples Color Color HEX Color RGB   #000000 rgb(0,0,0)   #FF0000 rgb(255,0,0)   #00FF00 rgb(0,255,0)   #0000FF rgb(0,0,255)   #FFFF00 rgb(255,255,0)   #00FFFF rgb(0,255,255)   #FF00FF rgb(255,0,255)   #C0C0C0 rgb(192,192,192)   #FFFFFF rgb(255,255,255) Try it yourself » 16 Million Different Colors The combination of Red, Green and Blue values from 0 to 255 gives a total of more than 16 million different co

jQuery Image Hover Captions by http://alijafarian.com/jquery-image-hover-captions/

Today we’re going to build some simple jQuery image hover captions. These types of captions work very well in a variety of grid formats – portfolio work, feature boxes, blog displays, etc. From a UX perspective they attract user attention [with images] and then display additional content on hover. Let’s get started! The HTML We’ll create a standard container and then child .block divs inside. The .block divs will contain the images and child .caption divs that contain the caption content. <div class = "grid-block-container" >   <div class = "grid-block standard" > <div class = "caption" > <h3> Caption Title </h3> <p> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. </p> <p><a href = "#" class = "learn-more" > Learn more </a></p>

Text appears when hover over image by https://forums.digitalpoint.com/threads/text-appears-when-hover-over-image.570583/

Depends. If the image is a link too, easy: HTML: <a href="somewhere.com"><img src="beeld.gif" alt="somewhere.com" title="click here to go to somewhere.com" /></a> In Internet Exploder, the ALT text shows on hover, which it's not supposed to but oh well. The rest of the world shows TITLE text on hover. However, if you want text to appear when hovering over just anything, that's a whole other clue of yarn. http://mikecherim.com/experiments/css_map_pop.php I used it on a website here: pizzaatje.nl > click on the scooter image at right, hover mouse over question marks. (earlier it was a three-page steaming pile of Javascript... now it's a few CSS rules) Ah, there is a third way I'd forgotten about. You could have the text already under the image (or above... wherever), but hidden by having the same colour as the background (the colour around the image). On hover

Show image on mouseover by http://progrower.coffeecup.com/pictureonmouseover.html

Hình ảnh
Mouse Here To Show Image <script language="Javascript"> <!-- function ShowPicture(id,Source) { if (Source=="1"){ if (document.layers) document.layers[''+id+''].visibility = "show" else if (document.all) document.all[''+id+''].style.visibility = "visible" else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "visible" } else if (Source=="0"){ if (document.layers) document.layers[''+id+''].visibility = "hide" else if (document.all) document.all[''+id+''].style.visibility = "hidden" else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "hidden" } } //--> </script> <style type="text/css"> #Style { position:absolute; visibility:hidden; border:solid 1

Place text over images on hover without JavaScript by http://geekgirllife.com/place-text-over-images-on-hover-without-javascript/

Hình ảnh
Thanks to CSS3 and better and better browser support for it, we can accomplish things now with CSS that previously required fancy JavaScript work. In this tutorial, I’ll walk you through fading in text over an image on hover. Tutorial Updated I updated this tutorial to show you how to take advantage of even more CSS3 properties. The update is available here . Here’s a sample of what we’ll be creating: Mt. Arenal, Costa Rica Venice, Italy La Jolla, California If you move your mouse over those images, you’ll see some text fade in that tells you where each photo was taken. When you move your mouse away, the text fades away. Nice, right? And look ma, no JavaScript. So let’s get started. Step 1: HTML Markup To keep things neat and tidy, I’m going to put my images in a list. Each list item will contain an image and a couple of nested <span> ‘s to hold the text that should appear when my site visitors hover over the images. Then I’ll wrap all of that in a link.