That exapmle works fine:
I am on lotus server.Your ASP.NET version is: 2.0.50727.1433
UPD: Actually never mind, I just tried to re-upload my old project and it seems to work fine. Sorry for bothering you. Thanks.
That exapmle works fine:
I am on lotus server.Your ASP.NET version is: 2.0.50727.1433
UPD: Actually never mind, I just tried to re-upload my old project and it seems to work fine. Sorry for bothering you. Thanks.
Thank u very much for this thread, Very useful..
Thanks for your response Untit1ed; you're most definitely not bothering me man, I give my time freely when I can, in return for all the help I receive from others.
Anyway, I'm glad things are working for you now; cool. I'm gonna go back to assuming the setup is the same on all x10Hostings servers...
Good Luck.
Thanks ranjinap for your kind words.
Hi guys,
I have a working webpage in Visual Studio 2005, but when I upload it x10hosting, I get the following error:
"Server Error in '/' Application
Operation aborted due to an exception (see Trace for details).
Description: HTTP 500. Error processing request.
Stack Trace:
System.Configuration.Provider.ProviderException: Operation aborted due to an exception (see Trace for details).
at System.Web.Security.SqliteRoleProvider.RoleExists (System.String roleName) [0x00000]
at System.Web.Security.Roles.RoleExists (System.String rolename) [0x00000]
at ASP.global_asax.Application_Start (System.Object sender, System.EventArgs e) [0x00000]
at (wrapper managed-to-native) System.Reflection.MonoMethod:InternalInvoke (object,object[],System.Exception&)
at System.Reflection.MonoMethod.Invoke (System.Object obj, BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00000]
"
Any ideas? I have the same web.config file that is on first post, but I added <roleManager enabled="true"/>.
Thanks.
nice post
To make sure your asp.net code compiles well under mono, use MoMA. MoMA is an utility that will check the code you submit to it and see if it's supported by Mono. http://www.mono-project.com/MoMA
█ Xavier L | Community Public Relations Manager (Free Hosting Support)
█ Yes, my position is too cool to even exist!
█ How am I helping? Rate this post by clicking theicon below! (this is even better than "liking" a post)
█ Terms of Service | Acceptable Use Policy | x10Hosting Wiki
I moved my app in C# from Visual Studio 2010 Ultimate to my x10 site and on any page besides the default.aspx page I get the error:
I got this script right from the asp.net site and I'm not sure exactly what this means as I am new to ASP.Net. Any suggestions?Code:Server Error in '/' Application gdiplus.dll Description: HTTP 500. Error processing request. Stack Trace: System.DllNotFoundException: gdiplus.dll at (wrapper managed-to-native) System.Drawing.GDIPlus:GdiplusStartup (ulong&,System.Drawing.GdiplusStartupInput&,System.Drawing.GdiplusStartupOutput&) at System.Drawing.GDIPlus..cctor () [0x00000] Version information: Mono Version: 2.0.50727.1433; ASP.NET Version: 2.0.50727.1433
Hi,
I've been having problems with my aspx pages... they were working fine, but stopped working one day without me making any changes. Someone pointed me to your post so I decided to copy your example. I deleted all my existing files and followed your instructions but the HelloWorld page does not work either. Here's my code...
Hello world .aspx<!-- this line is for C# projects -->HelloWorld.aspx.cs:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="HelloWorld.aspx.cs" Inherits="HelloWorld" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>Hello World!</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label ID="Label1" runat="server" Text="Erm, Hello World!"></asp:Label>
<br /> <br />
<asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="Press Me" />
</div>
</form>
</body>
</html>
using System;Web.config:
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class HelloWorld : System.Web.UI.Page
{
protected void Button1_Click(object sender, EventArgs e)
{
Label1.Text = "Asp.Net post test worked.";
}
}
<?xml version="1.0" ?>All files are located in '/public_html'
<configuration>
<appSettings />
<connectionStrings />
<system.web>
<customErrors mode="Off" />
</system.web>
</configuration>
The page is hosted here: http://mttracker.x10hosting.com/HelloWorld.aspx
As you can see, it just gives me a blank page... this is exactly what happened with all my other pages.
Please can you help me out... this is driving me mad!!!
Thanks in advance
TAO
Good post ,i thought ASP.net is not supported by x10
Regards ~ Vishal
Giving Reputation(at bottom of my post ) is the best way to encourage the person who helped you on forums.
Hi,
I have copied the hello world example to my public_html folder.
But when I try to browse the page
http://jingstromer.x10hosting.com/HelloWorld.aspx
I get the following error:
"XML Parsing Error: no element found"
What am I doing wrong?
Best Regards
Johan Ingströmer