Click here to Skip to main content
15,896,269 members
Articles / Hosted Services / Azure

YouConf - Your Live Online Conferencing Tool

Rate me:
Please Sign up or sign in to vote.
4.96/5 (41 votes)
17 Nov 2013CPOL167 min read 259.7K   660   70  
A site for managing and delivering virtual conferences - complete with embedded live streaming and chat. Showcasing the best Azure has to offer!
@model Conference
@{
    ViewBag.Title = "Create a conference";
}

@Html.EditorFor(x => Model)

<div>
    @Html.ActionLink("Cancel", "All")
</div>

@section SidebarContent{
    <div class="box" style="padding: 0.5em">
        <h2>Tips</h2>
        <p>To enable a live YouTube video feed, you'll need to setup a hangout in Google Hangouts, and then copy the hangout id into the <i>hangout id</i> field on this form. You can find the hangout id at the top of your Hangout window in Google Hangouts. E.g. If the Hangout URL is http://youtu.be/QveFMhmdcA7, the Hangout ID will be QveFMhmdcA7.</p>
        <p>To enable Twitter chat, you'll need to setup a Twitter widget on the <a href="https://twitter.com/settings/widgets" title="Twitter Widgets page" class="no-button">Twitter Widgets page</a> for your chosen hashtag, and then copy the Widget Id into the <i>Twitter widget id</i> field on this form. You can find your Twitter widget Id by going to the Twitter page for your widget, navigating to the section which says "<i>Copy and paste the code into the HTML of your site</i>" and copying the value in the <i>data-widget-id</i> field. It should be a long number such as 331557908192051202.</p>
    </div>
}

@section Scripts{
    @Html.Partial("ConferenceScripts")
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
New Zealand New Zealand
I'm a software developer based in the beautiful city of Wellington, New Zealand. I love experimenting with new .Net technologies as they arrive, and these days there seems to be a lot of choice as there are so many new features in the framework! My current interests are Azure, ASP.Net MVC, SignalR, Knockout, AngularJS, and responsive design (inc. using Bootstrap, Foundation, Skeleton). These change fairly often as I tinker with various new technologies...

Comments and Discussions