Emad Adel Hanna

I am a Cloud Solution Architect

Emad Adel

With over 15 years of experience in IT, I am a seasoned cloud solution architect and a Microsoft Certified Trainer. I currently work at KlayyTech, a leading IT company that provides cloud services and solutions to clients across various industries.
Erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper.

  • Cairo, Egypt
  • +20-12-4892008, +20-016-3008167
  • me@emadadel.com
  • it.emadadel@hotmail.com
  • www.emadadel.com
Me

My Professional Skills

I have successfully led numerous cloud migration projects, ensuring a smooth transition from on-premises to cloud-based environments. I also have expertise in cloud security and compliance, ensuring data protection and regulatory adherence. .

Microsoft Azure 90%
Microsoft 365 95%
Amazon AWS 70%
Enterprise Architect 60%

Training Services

I give people practical skills and knowledge for the workplace. It can help and improving their skills (Azure ,AWS , Microsoft 365 and SharePoint ).

IT consultant services

Helping businesses use technology to achieve their goals. and offer expertise in areas like cloud computing, cybersecurity, and software selection, and can improve efficiency, reduce risk, and save costs..

Professional Services

As and Azure expert and microsoft 365, I provide the best services, support and advice for all things Microsoft (Microsoft migration, support, and optimisation services).

Enterprise Architect services

help organizations align their IT infrastructure with business strategy. They basically design, evaluate, and build a blueprint for how technology supports the company's goals..

0
Completed project
0
Certifications Award
0
Success Training and Sessions
Completed Consultant projects
  • HTML5 Video and SharePoint 2010

     

    Read Part 1: HTML5 and SharePoint 2010

    HTML5 Video

    With the help of Javascript programming, you can create your own controls to control the video. This means you can create your own video player, apply different styles to it, add the functionality you want your way. Controls attribute in the video tag allows you to use the default controls in the video player. If you remove this attribute, all you get is a video window (without any controls). You can add your own controls underneath the video window.

    1. Open notepad and add following code to it.

    <!DOCTYPE html>
    <html>
    <body>
    <video id="video1" controls>
    <source src="HTML5_Video_Player_Demo_File.mp4" type='video/mp4;
    codecs="avc1.42E01E, mp4a.40.2"'>
    </video>
    </body>
    </html>

     

    This is same code that you used in html5_demo.htm in part 1 .

    2. Save the file as vplayer.html. Now we are going to make changes to this file and add new code.

    3. Add following CSS code between the <head> and </head> tags.

    <STYLE type="text/css">
    #bar
    {
    border: solid 1px black;
    width: 100%;
    margin-bottom: 5px
    }

    #position
    {
    height: 15px;
    color: white;
    background: steelblue;

    }

    #mask
    {
    float: left;
    position: relative;
    padding: 10px;
    border: 5px solid #61625d;
    font-family: Arial, Helvetica, sans-serif;
    background: #000000;
    box-shadow: inset 0 15px 35px #535353;
    }

    #vcontrols
    {
    position: relative;
    padding-top: 10px;
    float: left;
    clear: both;
    width: 98.5%;

    }
    section {
    display: block;
    }

    .boldbuttons{
    display: block;
    float: left;
    font: bold 13px Arial; /* Change 13px as desired */
    line-height: 22px;
    height: 30px;
    padding-left: 8px;
    text-decoration: none;

    }


    .buttonspan{
    display: block;
    padding: 1px 8px 1px 8px;
    }

    .buttonwrapper{
    overflow: hidden;
    width: 100%;
    }

    </STYLE>

     

    This CSS code will be used to stylize the video player. You can write your own style sheet to add more style to the video player and the controls. You can also create different skins and apply them dynamically to the player. Discussing that is beyond the scope of this article. Our goal is to run HTML5 code in SharePoint 2010.

    4. Replace the following code with new code (shown below):

    <video id="video1" controls>
    <source src="HTML5_Video_Player_Demo_File.mp4" type='video/mp4;
    codecs="avc1.42E01E, mp4a.40.2"'>
    </video>

    <section>
    <div id="mask">
    <video id="video1" ontimeupdate="progressBar()">

    <source src="HTML5_Video_Player_Demo_File.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'>
    </video>

    <div id="bar">
    <div id="position" >
    </div>
    </div>

    <div id="vcontrols">

    <button onclick="play()" class="boldbuttons"><span class="buttonspan">Play</span></button>
    <button onclick="pause()" class="boldbuttons"><span class="buttonspan">Pause</span></button>
    <button onclick="stop()" class="boldbuttons"><span class="buttonspan">Stop</span></button>
    <button onclick="fast()" class="boldbuttons"><span class="buttonspan">Fast</span></button>
    <button onclick="slow()" class="boldbuttons"><span class="buttonspan">Slow</span></button>

    </div>

    </div>
    </section>

     

    New Code

    We have given an ID to the video tag. This ID is used in the Javascript code. We have added five buttons under the video tag. These buttons are as following:

    1. Play: To play the video
    2. Pause: To pause the video. Video resumes from the same place where it was stopped when played again.
    3. Stop: To stop the video. Video starts from the start when played again.
    4. Fast: To increase the speed of the video. Video returns to normal speed when Play button is clicked.
    5. Slow: To reduce the speed of the video. Video returns to normal speed when Play button is clicked.

    Each button has a function attached to it. Function is called when click event is fired. The outer <div> (<div id="bar"> is used to draw a solid border. The inner <div> (<div id="position">) is used to indicate the current playback position. When video playback is under way, the <video> tag triggers the onTimeUpdate event continuously. You call progressBar() function to update the progress bar.

    5. Javascipt functions are given below. Copy them where section ends (after </section>tag).

    <script type="text/javascript">

    function progressBar()
    {
    var position = document.getElementById("position");
    var video=document.getElementById("video1");

    var status=document.getElementById("progress");

    position.style.width = (video.currentTime/video.duration * 100) + "%";

    //status.innerHTML = (Math.round(video.currentTime*100)/100) + " sec";

    }

    function play()
    {

    var video=document.getElementById("video1");
    video.play();

    }


    function pause()
    {

    var video=document.getElementById("video1");
    video.pause();

    }


    function stop()
    {

    var video=document.getElementById("video1");
    video.pause();
    video.currentTime = 0;

    }

    function fast()
    {

    var video=document.getElementById("video1");
    video.play();
    video.playbackRate = 12;

    }

    function slow()
    {

    var video=document.getElementById("video1");
    video.play();
    video.playbackRate = 0.25;

    }

    function normal()
    {

    var video=document.getElementById("video1");
    video.play();
    video.playbackRate = 1;

    }

    </script>

     

     

    Code is pretty straight forward and self-explanatory. progressBar() function is used to create the progress bar. normal() function is not being used as it served the same purpose as offerred by the Play button. We use document.getElementById() to get hold of the video tag.

    Save the file again. You can download complete html page from the following link:

    http://www.walisystemsinc.com/sharepoint/art/html5_p2/vplayer.zip (zip format)

    You can download the video used in this demo from the following link:

    http://walisystemsinc.com/sharepoint/art/html5/HTML5_Video_Player_Demo_File.zip (zip format)

    Copy the video file to the same folder that contains the html file. If you want to use your own video, just change the video path in the src attribute in the code.

    Using HTML5 in SharePoint 2010

    Finally, time to take the HTML5 code to SharePoint, the step you were waiting for so anxiously!

    6. There are two ways to write HTML5 code in SharePoint 2010. First is to use a content editor web part and second is to write the code directly inside a SharePoint page. We will cover both approaches below. First let's try the content editor approach. Before you start experimenting, you will create a new master page. You will work with the new master page instead of modifying the default one. Open your SharePoint site. Click Site Actions and select Site Settings.

    7. From Galleries section, select Master pages and page layouts.

    Figure 1: Master pages and page layouts

    Please note that my screenshots will look slightly different because of the background color that I have used in my master page. You will see a white background.

    8. Locate v4.master and select it. Hover your mouse over it, an arrow will appear. Click it to open the menu. Select Send To > Download a Copy. Save copy to your hard disk. Save it as v4copy.master.

    9. On the same page Master pages and page layouts, click Upload Document button in the ribbon to upload the new master page to the gallery.

    10. Browser to the folder where you saved v4copy.master and select the new master page. Click OK.

    Figure 2: New master page properties

    In Content Type, select Publishing Master Page. UI Version should be 4. Click Save to save the changes.

    11. Check In the file if it is checked out. Select v4copy.master in the list. To Check in, select v4copy.master from the list. Open menu and select Check In. After checking in, from the same menu, select Publish a Major Version.

    Figure 3: Publish a Major Version

    12. Enter comments in the Comments box. You can leave it empty if you want and click OK.

    13. After publishing, open same menu again and select Approve/Reject.

    Figure 4: Approve/Reject

    14. Select Approved and click Ok.

    Figure 5: Approve the newly published Master page

    Use new Master Page

    15. In your SharePoint site, click Site Actions and select Site Settings.

    16. In Look and Feel section, click Master page. If you don't see Master page option, the reason is you have not enabled publishing feature in your site. I discussed this on my blog. To enable it, go to Site Actions > Site Settings. Under Site Actions, click Manage site features. Enable SharePoint Server Publishing. Now you will see Master page option.

    17. In Site Master Page section, select v4copy.master from the drop down. Check Reset all subsites to inherit this site master page setting checkbox.

    18. In System Master Page section, select v4copy.master from the drop down and check Reset all subsites to inherit this system master page setting checkbox.

    19. In Alternate CSS URL, select option Use Microsoft SharePoint Foundation default styles and check Reset all subsites to inherit this alternate CSS URL checkbox. Usually we create a new CSS to use with new master page but because we are not trying to brand the site and our goal is to use a back up copy of the original master, we will use the default CSS. Click OK to save the changes.

    Figure 6: Use new Master page

    20. Now it's time to edit the master page. Open your site in SharePoint Designer 2010.

    21. From left side menu, select Master Pages. On the right side, you will see a list of pages. Click v4copy.master.

    Figure 7: Open Master page in SharePoint Designer 2010

    22. Click Edit file link under Customization.

    23. v4copy.master page will open. Scroll to the top and locate the following tag:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

    Replace it with the following:

    <!DOCTYPE html>

    24. Further two lines below, you will see following line:

    <meta http-equiv= "X-UA-Compatible"content="IE=8"/>

    Delete thie line. Removal of this tag will allow SharePoint to render the page in IE 9. Save master page.

    25. Open your SharePoint site in browser. Click Site Actions. Select Edit Page. Under Editing Tools, select Inserttab.

    Figure 8: Add web part

    26. Click Web Part button.

    27. In Categories box, select Media and Content. In Web Parts box, select Content Editor. Click Add button.

    28. Now that you have added the Content Editor web part, there are two ways to add HTML5 code. One is to create a site in IIS to host the html page and then provide the site link in the Content Editor web part. Second is to add the HTML5 code directly in the web part. Let's explore both options below.

    29. Let's try the IIS option first. Create a site in IIS and point it to the folder that contains the html file. Test the link in the browser. Now, edit the web part and add the link in the Content Link box. Click OK to apply the change.

    Figure 9: Add link in Content Editor

    30. Click Save & Close button in the ribbon to save the page.

    31. Test the code. Click Play button in the player to play the video. Following screenshot shows how the video player looks inside a SharePoint 2010 page.

    Figure 10: Video Player in Action inside SharePoint 2010 page

    32. This was the first option. Now, let's try the second option. Edit the web part again and remove the link from Content Link field. Click OK.

    33. Again, edit the web part by opening the menu from inside the web part.

    Figure 11: Edit web part

    34. Click Click here to add new contentlink.

    Figure 12: Add HTML5 code

    35. Click HTML button in the ribbon and select Edit HTML Source option.

    Figure 13: Edit HTML Source

    36. This will open HTML Source editor. Open html file in notepad and copy all content and paste it in the HTML Source editor and click OK.

    Figure 14: HTML Source editor

    37. Click OK in the Content Editor to save the changes.

    That's it. To see how this custom built HTML5 video player looks in SharePoint 2010, click the image below. It will load the video from youtube.com in iframe.

    [youtube http://www.youtube.com/watch?v=nFUJo4NpOnQ]

    Click image to see video of HTML5 video player in action inside SharePoint 2010

    To download this demo clip in zip format to your machine, click here

    To download or view this demo clip (in wmv format) directly from our site, click here.

    To view it on youtube.com, click here.

  • HTML5 and SharePoint 2010

     

    -- Run HTML5 videos in SharePoint 2010 --

    Are you ready?

    Are you excited? Have you been hearing this buzz word (HTML5) for a long time but couldn't muster enough confidence or energy to venture into it. Well, guess what! Now is the time! If you have ever wanted to learn this technology, you are at the right place. Just imagine, HTML5 and SharePoint 2010! Together! That's seems unbelievable! Isn't it? Well, I will be honest here. It's not about SharePoint. The problem is with the browsers. If you write HTML5 code and if you can run it in the browser, you can run it inside SharePoint as well but if you cannot run it in the browser, how will you run it inside SharePoint! Different browsers treat HTML5 differently. HTML5, if you talk about syntax, is just like ordinary HTML. What makes it exciting is the new tags. It just doubles the amount of work that programmers have to do to make the code compatible with all browsers. I must tell you that IE9 lags far behind the other browsers. It excited many people when it was announced that IE9 will support HTML5. No doubt, IE9 supports HTML5 but there are several things that you have to do (configure manually) before you can take advantage of the tags that have induced so much excitement in the developer community. Here are few things that you can do with HTML5:

    1. You are not dependant on Flash anymore. You can create rich Internet applications with HTML5. Not only that, you can now provide same rich functionality with simple code (no clutter, no mess).

    2. You can create rich applications for both web and mobile devices. Interesting thing is that you can now create an application that will run in mobile devices without the need to create native application. If you were afraid of programming in objective C, now you can create apps using just HTML(5). Cool! Isn't it?

    3. Create animations using Canvas. Using HTML5 canvas, you can now create games and other animations with ease.

    4. You can create amazing applications by using HTML5 with Javascript. You can take advantage of different Javascript libraries that are available for free. One of them is JQuery. You can create cool apps with HTML5 and JQuery.

    5. Geolocation is a cool new feature that lets you find out where in the world your visitors are. Luckily, geolocation feature has good support in every browser.

    6. Audio and Video: Adding audio and video to your web pages is a breeze now. Just add <audio> tag for audio and <video> tag for video and you are done. Add source tag to define the path and your media-rich page is ready.

    7. Simplicity: Now you can create useful complex applications with ease. All you need is HTML and some Javascript and you are ready to rock.

    What will you learn in this tutorial?

    1. You will create a video player in HTML5.

    2. You will learn to use popular JQuery video player in SharePoint 2010.

    3. You will learn tips and techniques to make HTML5 video run in IE9.

    4. You will learn to use HTML5 video player in SharePoint 2010.

    5. You will learn how to modify master page to incorporate HTML5 code

    6. You will learn how to use content editor web part to embed HTML5 code in a SharePoint 2010 page.

    1 2 3 Go!

    Before we start experimenting with the video tag, we need to make sure that our browser is ready to accept this tag. I will show you different tips and techniques on how to make your browser work with the video tag. After that we will create a video player and use it in SharePoint.

    Following browsers support HTML5 video tag:

    H.264: IE9, Chrome, Safari

    Ogg Theora: FireFox 3.5, Chrome 5, Opera 10.5

    WebM: FireFox 4, Chrome 6, Opera 10.6

    You will notice that IE 9 works with H.264 format only. You will have to convert your videos to this format in order to play them inside IE 9 browser. It's so easy to play videos in other browsers but with IE 9 it's a pain. You have to make it work forcefully.

    HTML5 audio/video works with following file types:

    1. MP3 (.mp3)
    2. Ogg Vorbis (.ogg)
    3. WAV (.wav)
    4. H.264 (.mp4)
    5. Ogg Theora (.ogv)
    6. WebM (.webm)

    Correct MIME type should be set in IIS before you can use a particular file type in browser. Before a web server sends a resource to a browser, it sends the MIME type. For example, to run .mp4 video file, video/mp4 MIME type should be added to your site in IIS first. As you have seen above that IE 9 works with H.264 (.mp4) format only so it's important that you add this MIME type in IIS first. Follow the steps below to add this MIME type:

    Add video/mp4 MIME type in IIS

    1. Go to All Programs > Administrative Tools and select Internet Information Services (IIS) Manager.

    2. You can add MIME type directly to the site that you may have created for your HTML5 project or you can add it to the server so that all sites can use it.

    Figure 1: Add a MIME type

    I created a site for my HTML5 projects. Select the site where you want to add the MIME type and then on the right side, in IIS section, double-click MIME Types icon to open MIME types.

    3. On right side, in Actions pane, click Add...link.

    Figure 2: Click Add to add new MIME type

    4. Enter .mp4 in File name extension and video/mp4 in MIME type and click OK.

    Figure 3: Add file extension

    A new MIME type has been added.

    Figure 4: Newly added MIME type

    Install Internet Explorer 9

    5. Download IE 9 for Windows 7 from the following link:

    http://www.microsoft.com/download/en/details.aspx?id=13950

    Download IE 9 for Vista and Windows Server 2008 from the following link:

    http://www.microsoft.com/download/en/details.aspx?id=16792

    6. After you have installed IE 9, you have to make sure that it supports the HTML5 video format. So, it's time to play with the HTML5. Let's create an HTML5 page and add a video tag to it. Download sample MP4 video file to use in your code. It's in a zip format and size is 2.41 MB. You can also play the file directly from the web without downloading it to your machine but that will be a slower experence. For good quality, it's better to download the file. If you want to run it directly from the net, here is the URL:

    http://walisystemsinc.com/sharepoint/art/html5/HTML5_Video_Player_Demo_File.mp4

    7. Open notepad and add following code:

    <!DOCTYPE html>
    <html>
    <body>
    <video id="video1" controls>
    <source src="HTML5_Video_Player_Demo_File.mp4" type='video/mp4;
    codecs="avc1.42E01E, mp4a.40.2"'>
    </video>
    </body>
    </html>< /FONT>


    8. Save file as "html5_demo.htm". Save it in the same folder where you downloaded the mp4 video. If you want to run the video directly from the Internet, change the src to following path:

    http://walisystemsinc.com/sharepoint/art/html5/HTML5_Video_Player_Demo_File.mp4

    This html file can be downloaded (in zip format) from the following location:

    http://walisystemsinc.com/sharepoint/art/html5/html5_demo.zip

    If this is your first HTML5 page, then congratulations! You have just created your first HTML5 page. Open the page in IE 9 browser. If you see an image, that means your IE 9 supports the mp4 video format but there is great chance that you will see a red cross on a blackground as shown in the image below:

    Figure 5: mp4 video format not supported in IE 9

    To further verify that the video format is not supported in IE 9, open the following URL in your IE 9 browser:

    http://ie.microsoft.com/testdrive/graphics/videoformatsupport/default.html

    It shows which video formats are currently being supported in your browser:

    Figure 5 : Video formats supported by IE 9 browser

    You will notice that the only support that you have is for Adobe Flash Player. HTML5 video is not supported. Now, what will you do? So next task is to fix the problem and make sure video format is supported by your browser.

    So, while your html page is still open in browser, press F12 . This will open the developer tools.

    Figure 6 : The developer tools in IE 9

    9. Open Console tab and enter following line at the bottom and hit Enter .

    document.getElementsByTagName("video")[0].error.code

    Figure 7 : Console Tab

    If there is no error and page loaded correctly, you will get a message:

    Unable to get value of the property 'code': object is null or undefined.

    This is not an error actually. The page loaded correctly and therefore the error object was null. If there was an error, you would see one of the following results:

    1: MEDIA_ERR_ABORTED (Aborted by the user)

    2: MEDIA_ERR_NETWORK (Network error)

    3: MEDIA_ERR_DECODE (Decoding error)

    4: MEDIA_ERR_SRC_NOT_SUPPORTED (Format was not supported)

    The first three are temporary issues and can be fixed. Fourth one requires attention. It occurs if encoding is not correct or MIME type is not supported. We have already added the MIME type but if you want to be sure, you can check it in the developer tools.

    10. Open Network tab in developer tools and click Start capturing button.

    Figure 8: Start capturing

    11. Refresh the html page. Once files have been loaded, you can stop capturing by pressing the Stop capturing button.

    Figure 9: Captured files

    12. Select the video file and click Go to detailed view button.

    13. Open Response headerstab.

    Figure 10: Content type

    Content-Type should be video/mp4. If it's text/html then something is wrong. The MIME type should be video/mp4. We already added MIME type above so it should work for you. In case you face this problem, restart IIS and try again.

    14. Second problem that you could face is encoding. Your video should be properly encoded. As mentioned above already, IE 9 supports only mpeg4 (.mp4) format. Converting and encoding videos is not an issue. There are several free tools available on the net that will do the job.I will discuss two of them below. Of course, you can search and download others also.

    15. First one is Movavi Video Converter. You can download 30 days trial version from here.

    Figure 11: Movavi Video Convertor

    Second one is Miro Video Convertor. You can download it from here. It's 100% free and open source. Once downloaded, you can open it from All Programs > Participatory Culture Foundation > Miro Video Converter > Miro Video Converter.

    Figure 12: Miro Video Converter

    To convert file to MP4, drag it to the Miro converter and select MP4 from the drop down box. Click Convert!. Voila! your file is now ready to be used in HTML5. It's as simple as that. So, what's next? Do you have necessary codecs on your system? Without required codecs video will still not play even if the file has correct encoding.

    Install Video Codecs

    SharePoint is a server product and to make use of its enterprise features, it is installed on Windows Server 2008. As you are trying to run video in SharePoint therefore it is important that you install the necessary codecs on the server. Easiest way is to install Windows media player. Yes, Windows media player is not available out of the box in Windows server 2008 as in other operating systems. It comes installed with Windows 7 but in Windows Server 2008, you have to add it manually. With Windows media player necessary codecs are also installed.

    16. There are two ways to install Windows media player. One is to download and install Windows Media Services 2008 for Windows Server 2008 R2. By installing these services, you will not get Windows media player but it will give you an option to download and install it on your machine. You can download these services from the following link:

    http://www.microsoft.com/download/en/details.aspx?id=20424

    17. After you have downloaded and installed these services, open Server Manager. Expand Roles node. Expand Streaming Media Services node. Expand Windows Media Services node. Click your server name.

    Figure 13: Windows Media Services

    18. On the right side, select Getting Started tab. Under Test your server, you will see an option to download Window media player. Do not click the link, instead click the green arrow. It will take you to the Microsoft site where you can download Windows media player for your version of Windows. Download the version that is right for your Windows and install it. If you are lucky you will be able to download it and install it. There are reports that there is a problem with this approach. The download page shows Windows media player for XP (64 bit) when you select Windows Server 2008 and after you have downloaded it, it fails to install. If this happens with you, try the second approach that is described below.

    In Server Manager, right-click Features and select Add Features. Check Desktop Experience box and click Install.

    Figure 14: Desktop Experience

    Windows may prompt you for a restart. Restart your machine and now Windows media player will be available on your machine. Try to run the video file directly in Windows media player, if it runs then your machine has the required codecs. You may still get an error message that codecs required to run the file are not available. Don't worry! There is a solution for every problem. Download and install Divx player. That will certainly install all the video codecs on your machine. You can also download codecs separately without installing the player. There are several sites that allow you to download the codecs but downloading the Divx player is the easiest way of getting the codecs. You can download Divx for free from the following site:

    http://www.divx.com/

    After installing Divx you can play your videos either in Windows media player or Divx player.

    By the way, did I mention that IE 9 also supports WebM format now? Following is the description of WebM taken from wikipedia:

    WebM is an audio-video format designed to provide a royalty-free, open video compression format for use with HTML5 video. The project's development is sponsored by Google.

    WebM is a good option for two reasons. First, H.264 is not free. Second, H.264 is a complicated technology. If for some reason, you are unable to run mpeg4 video, you can always try WebM. H.264 is free if your videos are offerred for free. If you are creating videos for commercial purposes, then you may have to pay a license fee.

    You can download and install WebM support for IE 9 from the following link:

    http://www.webmproject.org/ie/

    Figure 15: Download and install WebM support

    If your videos are in non-WebM format, use Miro Video Converter to convert them into WebM format.

    Alright, so now your system is ready to run the videos. Next step is to write a video player in HTML5. That is covered in second part of this article series. Don't worry you will not have to wait for that article. It is almost ready, in fact, it is in its final stage. Till then, enjoy the last day of 2011. HAVE FUN! HAPPY NEW YEAR TO EVERYONE!

    UPDATE Read Part 2:

    http://emadadel.wordpress.com/2012/05/07/html5-and-sharepoint-2010/

     

    -- END OF PART 1 --

  • Using ASP.NET Controls in SharePoint

    ASP.NET controls

    We can view the controls that are available by opening up the Toolbox task pane and maximizing the ASP.NET Controls option. Within this option, there are six categories of controls. Of these, we can ignore the WebParts option because that is simply a link to the Web Parts task pane.

    It should be noted that it is not possible to use ASP.NET WebParts in SharePoint 2007 sites. It is, however, possible for developers to create their new user controls as SmartParts (see http://www.codeplex.com/smartpart) to allow them to be included within WSS and MOSS sites.

    The five remaining categories are:

    Standard controls

    This contains a large number of controls. Most of these are simple, for example:

    • The Image control, which displays a picture.
    • The Label control, which displays text.
    • The Hyperlink control, which we will use to link from our homepage shortly.

    In addition, we have standard controls that are somewhat more exciting:

    • The FileUpload control allows files to be uploaded to the server from the user's computer.
    • The Wizard control allows a multi-step form to be added to our site. At each step of the wizard, the user is asked for different information.
    • The Xml control allows data from an XML document to be displayed on our page (although you may find it easier to use a Data View to display the contents of your XML file).
    • The Calendar control, which we will also add to our site later in this article.

    Preparing Your Forms Conversion Using Oracle Application Express (APEX)

    Data controls

    The data controls allow us to connect to various different data sources, display the results on our page, and update the data in the source.

    Because SharePoint already provides us with access to data sources in the Data Source Library task pane, we can safely ignore these controls.

    Preparing Your Forms Conversion Using Oracle Application Express (APEX)

    Validation controls

    The validation controls allow us to validate information input by the user. We will see this in practice towards the end of the article, when we add validation to a form.

    Preparing Your Forms Conversion Using Oracle Application Express (APEX)

    Navigation controls

    The navigation controls provide us with three different methods of helping users navigate our site. The Menu and TreeView controls would allow users to browse to a particular page, while the SiteMapPath control displays breadcrumbs that show their position within the page hierarchy. We will see an example of the Menu control later in this article.

    Preparing Your Forms Conversion Using Oracle Application Express (APEX)

    Login controls

    The login controls allow us to take advantage of ASP.NET's extensive membership provider system. The benefit of this is that we no longer need to manually create all the elements required by a login system (i.e. registration, login, password reminder, etc.). We will also look at this in detail in this article.

    Preparing Your Forms Conversion Using Oracle Application Express (APEX)

    Further information about virtually all of the ASP.NET server controls, including examples and code snippets, is available in the ASP.NET Control Reference in the .NET Framework SDK, which is available at.

    Adding a simple control

    In this article, we will be using various server controls in our pages.

    We will start by adding one of the simplest controls to our homepage:

    1. Open the share site in SharePoint Designer.
    2. Open the default.aspx page in Design view.
    3. Make sure that the Standard controls are visible in the Toolbox task pane.
    4. Click on the HyperLink control and drag it onto our page.
    5. Right-click on the control that we have just placed and select Properties from the shortcut menu. This will open the Tag Properties task pane to the left of our design window.
    6. Type View Orders Graph into the Text field in the Tag Properties task pane.
    7. Click on the ellipsis to the right of the NavigateUrl field and select orders.aspx from the list of pages.
    8. Finally, save the page.

    The following image shows the Properties shortcut menu that we see as we work through this process:

    Preparing Your Forms Conversion Using Oracle Application Express (APEX)

    Now, when we open http://olmec/share/ in our browser, we see that the default page links to the Order Graphs.

  • SkyDrive Connector for SharePoint

    Project source : http://skydriveconnector.codeplex.com/#

    Project Description
    SkyDrive Connector for SharePoint is a sandbox web part that can help manage documents stored on SkyDrive on SharePoint by adding additional metadata. This helps the document to be discoverable on SharePoint. Also SkyDrive provides 25GB of free space for live users.

    In other words, the document or file is physically stored on SkyDrive, referenced in SharePoint.

    This web part works on Office 365 SharePoint Online and SharePoint On Prem.

    Please note that the SharePoint site must be on https protocol.

    The web part provides the following functionality

    • Single SignOn from SharePoint

    image

    Please note. Single sign works if you have signed into SharePoint online using Live id credentials. Other you are prompted for Live ID Credentials.

    • Create Folder and Files
    • Import Single File/Folder
    • Import Folder contents( does not implement deep copy)
    • Sorting

    image

    • Single Integrated view

    image

    • Onetime web part configuration (Update)

    This has two parts.

    Part 1. Live Configuration

    Go to http://manage.dev.live.com/ and create an application for your domain.

    image

    Provide a Name and click Accept

    image

    image

    Copy the Client ID. This is required for web part configuration later.

    Go to the Application Settings page. Click on API Settings.

    image

    Provide a Redirect Domain. For e.g. if your SharePoint site is hosted on https://xyz.sharepoint.com/sites/somesitecollection.

    Provide the domain as https://xyz.shareopoint.com and click save.

    This completes Live configuration.

    Part 2. SharePoint Configuration

    Download the latest version of SkyDriveConnectorForSharePoint.wsp and upload to SharePoint Solution Gallery. Activate the solution.

    image

    Go to Manage Site Features and Activate SkyDrive Connector for SharePoint

    image

    image

    Add the SkyDrive Connector Web part to a web part page and provide the below configuration

    In the Edit Web Part Properties, find the SkyDrive Connector Properties and provide the Client ID obtained in Part 1.

    Provide a Height of 700px and Width to occupy the full page width. Click Ok to save the web part properties.

    image

    This Completes the web part configuration and you should see the SkyDrive on SharePoint

    image

    Planned features

    Drag – Drop Files and Folder

  • Creating Workflows in Visio 2010

    Visio has been used by many companies, for a while now, for documenting processes. It has proven to be a great tool for visualizing the flow of a process. Visio Premium 2010 finally lets us create a visual diagram for business processes (workflows). This diagram can then be exported to SharePoint Designer (SPD) where you can put all the logic together. This works the other way around as well. You can create the logic in SPD and export the file to Visio Premium to see it visually. This can help you fine tune some errors or help you notice that the current flow is just not how it should be. You can then change this aspect right within Visio Premium. The drag and drop functionality of Visio still holds true when working with workflow diagrams. This makes this approach similar to how Nintex Workflows work (not as good or easy, but similar).

    Now that I have touched on what Visio Premium can do for workflows, let me show you an example of how this works with a OOTB SharePoint 2010 Approval workflow.

    This is what the workflow looks like in SharePoint Designer 2010:

    wf
    Now we just export this out to Visio so we can see it their.
    expvis
    This will ask you to save a .vwi file. This is the file needed to view the diagram for the workflow within Visio. So, lets go open Visio and take a look.
    First you need to start a Microsoft SharePoint Workflow template.
    temp

    Next you have to import the .vwi file you just created within SharePoint Designer 2010.
    impo

    And once you navigate to the .vwi file and open it up, you get to see the outcome. *Note I grabbed a simple workflow that does not have much to it (from a basic view standpoint).
    visio

    Here we are. Shows the start and end point of the workflow as well as the process that the workflow is to run through (in this case an approval process). While this picture is here, you can see on the left hand side, Visio shows all the basic actions you would use in a workflow. All you have to do to add one is drag it over to the drawing board and drop it where you want it to go.

    This is all pretty neat if you ask me. If you have someone that is great at laying down visio diagrams, and someone that is great at workflows, you can produce something amazing. There is also an option in SharePoint Designer 2010 to also publish the Visio diagram to SharePoint. This will let users see a graphical depiction of the workflow and where it may currently be sitting waiting for something.
  • Microsoft Windows Developers Conference

    Microsoft Biggest Developer Conference will be on 14th and15th of May 2012.

    The event will feature Ali Faramawy, the Corporate Vice President of Microsoft International

    you can find the agenda below :-

    What to do before you come?
    You have the option of coming prepared with your pre-built

    Windows 8 applications or you can develop your own during

    the two days. Make sure you bring your laptop and download

    the below so your software is up to date.

    Windows 8 Consumer Preview

    Visual Studio 11 Beta

    Windows 8 SDKs Samples

    for registration Click here