![]() |
Web Development »
ASP.NET »
General
Intermediate
License: The Code Project Open License (CPOL)
Cisco IP Phone ServicesBy Guillaume GrosA small example on how to produce content for Cisco IP Phones in ASP.NET |
Windows, .NET, ASP.NET, Visual Studio, Dev
|
||||||||
|
Advanced Search Add to IE Search |
|
|
|
||||||||||||||||

The new Cisco IP Phones (7920, 7940, 7960, 7970, 7971) all supports showing content located on a webserver. This content needs to be formatted using Cisco proprietary format using XML. This article will walk you thru creating a small hello world using the library I created.
<%@ Page language="c#" Codebehind="hello.aspx.cs" AutoEventWireup="false" Inherits="IPPhone.hello" %>
"line1">
Response.ContentType = "text/xml";
CiscoIPPhoneText t = new CiscoIPPhoneText("Hello World","Hello World","Hello World");
t.AddSoftKey(new CiscoSoftKey("Hello","",1));
Response.Write(t.ToString());
CiscoIPPhoneText will require 3 parameters: Title, Prompt and Text.Response.Write.AddSoftKey method.<CiscoIPPhoneText> <Title>Hello World</Title> <Prompt>Hello World</Prompt> <Text>Hello World</Text> <SoftKeyItem> <Name>Hello</Name> <URL></URL> <Position>1</Position> </SoftKeyItem> </CiscoIPPhoneText>But how to get the screen shot?
General
News
Question
Answer
Joke
Rant
Admin
|
PermaLink |
Privacy |
Terms of Use
Last Updated: 23 Aug 2006 Editor: |
Copyright 2006 by Guillaume Gros Everything else Copyright © CodeProject, 1999-2009 Web18 | Advertise on the Code Project |