You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.0 KiB
31 lines
1.0 KiB
<!-- ############################################################################ -->
|
|
<!-- ## UDDI Services ## -->
|
|
<!-- ## Copyright (c) Microsoft Corporation. All rights reserved. ## -->
|
|
<!-- ############################################################################ -->
|
|
|
|
<%@ Page Language='C#' %>
|
|
<%@ Register TagPrefix='uddi' Namespace='UDDI.Web' Assembly='uddi.web' %>
|
|
|
|
<html>
|
|
<head>
|
|
<link href='../stylesheets/uddi.css' rel='stylesheet' type='text/css'>
|
|
</head>
|
|
<body oncontextmenu='Window_OnContextMenu()' class='contextFrame'>
|
|
<table cellpadding='0' cellspacing='0' width='100%' height='100%'>
|
|
<tr>
|
|
<td align='left' valign='middle'>
|
|
<uddi:UddiLabel Text='[[HEADING_EDIT]]' CssClass='contextFrame' Runat='server' /></b>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<script language='javascript'>
|
|
function Window_OnContextMenu()
|
|
{
|
|
var e = window.event;
|
|
|
|
e.cancelBubble = true;
|
|
e.returnValue = false;
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|