<% if instr(request.ServerVariables("REMOTE_ADDR"),"24.73.161.30") then response.Redirect("http://www.mmktechnologies.com/dontlike.asp") %> <% call writeLayer() %>
Have Questions? 1-(888)-273-0833

If you deliver video, audio, tapes or CDs you need MMK Secure Stream right now.
MMK Secure Stream provides protection for media and can provide you with secure streaming points for live broadcasts and/or video or audio conferencing.

Click here for some possible business models.

yahoo trip planner
Yahoo just announced the release of their trip planner.It allows you to plan a trip to see different sites and print out a list of all the things you’ve planned so you can actually do them when you get there. They integrate the use of Yahoo Maps and you can also see other people’s [...]
read more:

Lehigh

CactusThe traffic on the way to Bethlehem, Pennsylvania today was horrible. Makes you want a helicopter -- too bad they are unaffordable. The Lehigh University Engineering Advisory Board had a nice reception and dinner. Tomorrow we spend the day focusing on university programs to integrate engineering and business curricula. After dinner I did some benchmarking.

The first mark was just down the lawn in front of the university center (the UC as we used to call it). I had seen the flagpole many times back in the 1960's when I was a student there but never knew there was a benchmark in the stone wall around the flagpole. The pole used to be wood and is now steel but the foundation is the same and has been there since 1935 (ten years before I was born).

The second mark was at a train station just north of the river. The benchmark disk was inside the entrance doors to the station which is now a restaurant. It was placed there in 1932.

The oldest mark I have ever found was next. It was at a beautiful church. The mark was the spire at the top of the steeple -- placed there in 1885. The church would have been easy to find in the daytime but late at night in the rain it was more difficult.

I am very fortunate to be spending the night at the Sayre Mansion.


read more:

Business Leadership Forum - Day 2

RomeDay two of the Business Leadership Forum at "the auditorium"opened with a big-screen video made for the event by Tom Friedman, author of The World Is Flat: A Brief History of the Twenty-first Century. Less than four hundred years ago, people still thought the world was flat and that ships would "fall off" the globe if they went too far. Then people figured out that the world was round, not flat. Now we are all realizing, thanks to Tom's book, that the world is indeed flat. Tom Friedman totally gets it and tells it very clearly.

1989 marked the fall of the Berlin Wall and the rise of Windows. This was followed by Netscape going public in August 1995 which triggered the dot-com boom which triggered massive over-investment in fiber optic cable which enabled extremely low cost transfer of information on a global basis. A revolution in web applications enabled collaboration using interoperable standards-based protocols. These three things flattened the world and brought us from the industrial age to the information age. The end result, Tom says, is that when the world is flat, whatever can be done, will be done. The only question is "will it be done by you or to you". He says it takes an innovative flare, not vanilla ice cream -- which everybody can make -- but "whipped cream with a cherry on top".

Kunio Nakamura, President of Matsushita Electric Industrial Co., Ltd. (otherwise known to most of us as Panasonic) with classic Asian sincerity, paid great homage to IBM for all that his company had learned and how it was supported during a significant transformation. Matsushita was founded in 1918 and now has sales of $75 billion with $3.4 billion in profit and 335,000 employees. Their management philosophy is that the company is a public entity, that the customer comes first, and to start each day anew. Their largest single product is TV's but it is only 8% of revenue. The company was in crisis condition in 2000, reached the survival level in 2006, and plans to achieve global excellence by 2010. A key element of this comeback is management innovation, a key part of which is using IT to drive productivity. This may seem obvious but Nakamura-san pointed out that culturally productivity was thought of as something that can be nudged by maybe 10%, whereas American companies think of doubling and tripling of productivity. He said Matsushita wants to change from a lead ball to a soccer ball. I have heard many CEO's describe corporate strategies over the years but never have I seen a CEO use the terms "IT" and infrastructure as extensively as Nakamura-san. He outlined how the company plans to invest $1.5B in IT over five years to integrate their procurement, production, distribution, sales & services from material & component suppliers all the way through to customers. He plans to use IBM as the company's innovation partner.

Related links
bullet Intro to Roman Rendezvous Stories
bullet Index to Roman Rendezvous stories


read more:

ASP.NET MVC Preview 3 Release

This morning we released the Preview 3 build of the ASP.NET MVC framework.  I blogged details last month about an interim source release we did that included many of the changes with this Preview 3 release.  Today's build includes some additional features not in last month's drop, some nice enhancements/refinements, as well as Visual Studio tool integration and documentation.

You can download an integrated ASP.NET MVC Preview 3 setup package here.  You can also optionally download the ASP.NET MVC Preview 3 framework source code and framework unit tests here.

Controller Action Method Changes

ASP.NET MVC Preview 3 includes the MVC Controller changes we first discussed and previewed with the April MVC source release, along with some additional tweaks and adjustments. 

You can continue to write controller action methods that return void and encapsulate all of their logic within the action method.  For example:

which would render the below HTML when run:

Preview 3 also now supports using an approach where you return an "ActionResult" object that indicates the result of the action method, and enables deferred execution of it.  This allows much easier unit testing of actions (without requiring the need to mock anything).  It also enables much cleaner composition and overall execution control flow.

For example, we could use LINQ to SQL within our Browse action method to retrieve a sequence of Product objects from our database and indicate that we want to render a View of them.  The code below will cause three pieces of "ViewData" to be passed to the view - "Title" and "CategoryName" string values, and a strongly typed sequence of products (passed as the ViewData.Model object):

One advantage of using the above ActionResult approach is that it makes unit testing Controller actions really easy (no mocking required).  Below is a unit test that verifies the behavior of our Browse action method above:

 

We can then author a "Browse" ViewPage within the ViewsProducts sub-directory to render a response using the ViewData populated by our Browse action:

When we hit the /Products/Browse/Beverages URL we'll then get an HTML response like below (with the three usages of ViewData circled in red):

Note that in addition to support a "ViewResult" response (for indicating that a View should be rendered), ASP.NET MVC Preview 3 also adds support for returning "JsonResult" (for AJAX JSON serialization scenarios), "ContentResult" (for streaming content without a View), as well as HttpRedirect and RedirectToAction/Route results.  

The overall ActionResult approach is extensible (allowing you to create your own result types), and overtime you'll see us add several more built-in result types.

Improved HTML Helper Methods

The HTML helper methods have been updated with ASP.NET MVC Preview 3.  In addition to a bunch of bug fixes, they also include a number of nice usability improvements.

Automatic Value Lookup

With previous preview releases you needed to always explicitly pass in the value to render when calling the Html helpers.  For example: to include a value within a <input type="text" value="some value"/> element you would write:

The above code continues to work - although now you can also just write:

The HTML helpers will now by default check both the ViewData dictionary and any Model object passed to the view for a ProductName key or property value to use.

SelectList and MultiSelectList ViewModels

New SelectList and MultiSelectList View-Model classes are now included that provide a cleaner way to populate HTML dropdowns and multi-select listboxes (and manage things like current selection, etc).  One approach that can make form scenarios cleaner is to instantiate and setup these View-Model objects in a controller action, and then pass them in the ViewData dictionary to the View to format/render. 

For example, below I'm creating a SelectList view-model class over the set of unique category objects in our database.  I'm indicating that I want to use the "CategoryID" property as the value of each item in the list, and the "CategoryName" as the display text.  I'm also setting the list selection to the current CategoryId of the Product we are editing:

Within our view we then just have to write the below code to indicate that we want to create a drop-downlist against the SelectList we put into ViewData:

This will then render the appropriate drop down with items and selection for us at runtime:

 

Built-in error validation support isn't included with our HTML helpers yet (you currently need to write code for this) - but will show up in the future, which will make form editing scenarios even easier.

You'll also start to see ASP.NET AJAX helper methods show up in future preview releases as well, which will make it easier to integrate AJAX into MVC applications with a minimum of code.

URL Routing Improvements

ASP.NET MVC Preview 3 includes a number of improvements to the URL routing system.  URL routing is one of the most "fundamental" components of a web MVC framework to get right, hence the reason we've spent a lot of focus the first few previews getting this area nailed.  Our new URL routing engine will ship in .NET 3.5 SP1 this summer, and will support both Web Forms and MVC requests.  ASP.NET MVC will be able to use the built-in .NET 3.5 SP1 routing engine when running on .NET 3.5 SP1. ASP.NET MVC will also include its own copy of the assembly so that it can also work on non-SP1 systems.

Some of the URL Routing Improvements in the Preview 3 release include:

MapRoute() and IgnoreRoute() helper methods

ASP.NET MVC Preview 3 includes new "MapRoute" and "IgnoreRoute" helper methods that you can use to more easily register routing rules.  MapRoute() provides an easy way to add a new MVC Route rule to the Routes collection.  IgnoreRoute() provides an easy way to tell the URL routing system to stop processing certain URL patterns (for example: handler .axd resources in ASP.NET that are used to serve up JavaScript, images, etc). 

Below is an example of the default RegisterRoutes() method within Global.asax when you create a new ASP.NET MVC project where you can see both of these new helper methods in action. 

The MapRoute() helper method is overloaded and takes two, three or four parameters (route name, URL syntax, URL parameter default, and optional URL parameter regular expression constraints). 

You can call MapRoute() as many times as you want to register multiple named routes in the system.  For example, in addition to the default convention rule, we could add a "Products-Browse" named routing rule like below:

We can then refer to this "Products-Browse" rule explicitly within our Controllers and Views when we want to generate a URL to it.  For example, we could use the Html.RouteLink view helper to indicate that we want to link to our "Products-Browse" route and pass it a "Food" category parameter using code in our view template like below:

This view helper would then access the routing system and output an appropriate HTML hyperlink URL like below (note: how it did automatic parameter substitution of the category parameter into the URL using the route rule):

We could alternatively use the new Url.RouteUrl(routeName, values) within views if we wanted to just retrieve the URL for a named route (and not output the <a> html element). 

We could also use the new RedirectToRoute(routeName, values) helper method on the Controller base class to issues browser redirects based on named routing rules. 

Richer URL Route Mapping Features

ASP.NET MVC Preview 3 also supports a bunch of new URL route mapping features.  You can now include "-", ".", ";" or any other characters you want as part of your route rules.

For example, using a "-" separator you can now parse the language and locale values from your URLs separately using a rule like below:

This would pass appropriate "language", "locale", and "category" parameters to a ProductsController.Browse action method when invoked:

URL Route Rule Example URL Parameters Passed to Action method
{language}-{locale}/products/browse/{category} /en-us/products/browse/food language=en, locale=us, category=food
  /en-uk/products/browse/food language=en, locale=uk, category=food

Or you can use the "." file extension type at the end of a URL to determine whether to render back the result in either a XML or HTML format:

This would pass both "category" and a "format" parameters to the ProductsController.Browse action method when invoked:

URL Route Rule Example URL Parameters Passed to Action method
products/browse/{category}.{format} /products/browse/food.xml category=food, format=xml
  /products/browse/food.html category=food, format=html

ASP.NET MVC Preview 3 also supports wildcard route rules (these were also in Preview 2).  For example, you can indicate in a rule to pass all remaining URI content on as a named parameter to an action method:

This would pass a "contentUrl" parameter to the WikiController.DisplayPage action method when invoked:

URL Route Rule Example URL Parameters Passed to Action method
Wiki/Pages/{*contentUrl} /Wiki/Pages/People/Scott contentUrl="People/Scott"
  /Wiki/Pages/Countries/UK contentUrl="Countries/UK"

These wildcard routes are very useful to look at if you are building a blogging, wiki, cms or other content based system.

Summary

Today's Preview 3 release of ASP.NET MVC includes a bunch of improvements and refinements.  We are starting to feel good about the URL routing and Controller/Action programming model of MVC, and feel that those areas are starting to bake really well.  In future preview releases you'll start to see more improvements higher-up the programming model stack in areas like Views (html helpers, validation helpers, etc), AJAX, sub-controllers and site composition, deeper Login, Authentication, Authorization and Caching integration, as well as data scaffolding support. 

I also have a (very) long tutorial post that I started putting together this past weekend that walks-through building an application using ASP.NET MVC Preview 3 that I'm hoping to wrap up and post in the next few days.  This should provide both a good intro to ASP.NET MVC, as well as help provide some context on how all the pieces fit together if you are interested in using the ASP.NET MVC option.

Hope this helps,

Scott


read more:


You Searched for

integrate drm

Click integrate drm to go to Citizens Web Casting
SEARCH RSS NEWS USING THE WORDS BELOW

integrate drm | digital rights management integrate | pay per play | best digital rights management | using DRM | advantages of drm | Digital Rights Management | DRM | protect video | protect media | Secure video | webcam security | movie security | pay per view | pay for video | encrypt video | dont save | can not save | can not view | do not download | can't download | Custom Digital Rights Management | watch once | stop piracy | expire audio | pay for webcam | web cam secure | i-friends solution | sell my video | sell my music | sell movie | web video | web audio | internet video stream | internet audio stream | DRM provider | webcam safety | pay to view | pay to listen | video password | audio password | password protect video | password protect audio | protect media with password | protect video with password | video password protected | expire video | video piracy | audio piracy | DRM Security | Digital Rights Management | video encryption | video streaming | audio protect | video secure | media secure | video license | DRM service | DRM software | DRM Encoder | DRM License | Predeliver license | media protect | DRM protection | digital rights management provider | internet web cam | digital rights management scheme | custom drm | custom digital rights management | drm solutions | digital rights management solutions | drm wmv | drm system | digital rights management system | develop drm | drm development | integrate drm |


Hook Up Portal design personals web site own dating personals own a personals site online personals ads dating personals ads alt personals womens personals


www.citizenswebcasting.com

(c) Copyright 2005 Citizens Web Casting.

Quick Assistance enter your phone # and we will call you ASAP.
No hard-core sales pitch just the information you need.
Name
Area Pre Number
Code Image - Please contact webmaster if you have problems seeing this image code
<% = strTxtLoadNewCode %> Enter the code exactly as you
see it in the image:

(CaSe SeNsitiVe)
(Cookies must be enabled)

<% if captcha<>"" then captcha=replace(captcha,"flagset|","") response.write captcha end if %>