[MonoDevelop] MonoDevelop 0.12 and AspNetEdit

monodevelop-list.1.tracyanne at spamgourmet.com monodevelop-list.1.tracyanne at spamgourmet.com
Tue Sep 12 17:50:49 EDT 2006


Just testing AspNetEdit, I get the following errors.

The ASP.NET file parser failed to
parse /home/tracy/Development/testweb/web.config because: expecting '>'.
Got 'system'

This code below trigger the error above

<?xml version="1.0"?>
<configuration>
	<configSections>
		<section name="magicAjax"
type="MagicAjax.Configuration.MagicAjaxSectionHandler, MagicAjax"/>
	</configSections>
	<magicAjax tracing="false">
		<pageStore/>
	</magicAjax>
	<system.web>
		<authentication mode="Forms" />
		<httpModules>
			<add name="MagicAjaxModule" type="MagicAjax.MagicAjaxModule,
MagicAjax"/>
		</httpModules>
		<compilation debug="true" />
	</system.web>
</configuration>


When I attempt to build the solution I get the following error, the html
associated with the error follows

Building Solution testweb

Building Project: testweb Configuration: Debug

Build failed. The tag prefix "ajax" has not been registered



<%@ Page Language="C#" Inherits="testweb.Default" %>
<%@ Register TagPrefix="ajax" Namespace="MagicAjax.UI.Controls"
Assembly="MagicAjax" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
	<title>Default</title>
</head>
<body>
	<form id="form1" runat="server">
	   <ajax:ajaxpanel ID="Ajaxpanel1" runat="server">
    		<asp:TextBox id="textBox1" runat="server"/>
    		<asp:Button id="button1" runat="server" OnClick="onButtonClick"/> 
		</ajax:ajaxpanel>
	</form>
</body>
</html>


regards

Tracy Barlow



More information about the Monodevelop-list mailing list