+ Reply to Thread
Page 3 of 6 FirstFirst 12345 ... LastLast
Results 21 to 30 of 57
Like Tree3Likes

Thread: How to get ASP.Net to work at x10Hosting

  1. #21
    gichan is offline x10Hosting Member gichan is an unknown quantity at this point
    Join Date
    Jan 2010
    Posts
    64

    Re: How to get ASP.Net to work at x10Hosting

    I'm afraid that the asp.net is not currently working on absolute and boru servers.
    Edit:
    I'm afraid that the asp.net is not currently working on absolute and boru servers.
    Last edited by gichan; 02-11-2010 at 12:00 PM. Reason: Automerged Doublepost

  2. #22
    josenain is offline x10Hosting Member josenain is an unknown quantity at this point
    Join Date
    Oct 2007
    Posts
    6

    Re: How to get ASP.Net to work at x10Hosting

    And I'm pretty sure it's not working on Cossacks either. Mono is probably done in every server at x10.

  3. #23
    pmestevez is offline x10Hosting Member pmestevez is an unknown quantity at this point
    Join Date
    Feb 2010
    Posts
    1

    Re: How to get ASP.Net to work at x10Hosting

    Thank you for leting me know. Is it temporal?

  4. #24
    freinhardd is offline x10Hosting Member freinhardd is an unknown quantity at this point
    Join Date
    Aug 2009
    Posts
    1

    Re: How to get ASP.Net to work at x10Hosting

    Thx for codes:drool:

  5. #25
    kebinuchiousu is offline x10Hosting Member kebinuchiousu is an unknown quantity at this point
    Join Date
    Nov 2009
    Location
    Apple Valley, California USA
    Posts
    5

    Question Re: How to get ASP.Net to work at x10Hosting

    Hi,

    I tried the tutorial but when I try to run version.aspx I get an System.Reflection.AmbiguosMatchException

    http://kebinuchiousu.x10hosting.com/version.aspx

    Code:
    System.Reflection.AmbiguousMatchException: Ambiguous matching in method resolution
      at System.Reflection.Binder.FindMostDerivedMatch (System.Reflection.MethodBase[] match) [0x00000] in <filename unknown>:0 
      at System.MonoType.GetMethodImpl (System.String name, BindingFlags bindingAttr, System.Reflection.Binder binder, CallingConventions callConvention, System.Type[] types, System.Reflection.ParameterModifier[] modifiers) [0x00000] in <filename unknown>:0 
      at System.Type.GetMethod (System.String name, BindingFlags bindingAttr) [0x00000] in <filename unknown>:0 
      at System.Web.UI.TemplateControl.CollectAutomaticEventInfo () [0x00000] in <filename unknown>:0 
      at System.Web.UI.TemplateControl.WireupAutomaticEvents () [0x00000] in <filename unknown>:0 
      at System.Web.UI.Page.ProcessRequest (System.Web.HttpContext context) [0x00000] in <filename unknown>:0 
      at System.Web.HttpApplication+<Pipeline>c__Iterator2.MoveNext () [0x00000] in <filename unknown>:0 
      at System.Web.HttpApplication.Tick () [0x00000] in <filename unknown>:0
    This is the code for version.aspx

    Code:
    <%@ Page Language="VB" %>
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <script runat="server">
         Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
            Try
                Response.Write("Your ASP.NET version is: " & System.Environment.Version.ToString())
            Catch ex As Exception
                Response.Write(ex.ToString())
            End Try
        End Sub
    </script>
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title>ASP.Net Test</title>
        <script runat="server">
         Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
            Try
                Response.Write("Your ASP.NET version is: " & System.Environment.Version.ToString())
            Catch ex As Exception
                Response.Write(ex.ToString())
            End Try
         End Sub
        </script>
    </head>
    <body>
        <form id="form1" runat="server">
        </form>
    </body>
    </html>

  6. #26
    kebinuchiousu is offline x10Hosting Member kebinuchiousu is an unknown quantity at this point
    Join Date
    Nov 2009
    Location
    Apple Valley, California USA
    Posts
    5

    Re: How to get ASP.Net to work at x10Hosting

    When I compiled the vb.net code instead of using the interpreted mode it worked fine.

    Quote Originally Posted by kebinuchiousu View Post
    Hi,

    I tried the tutorial but when I try to run version.aspx I get an System.Reflection.AmbiguosMatchException

    http://kebinuchiousu.x10hosting.com/version.aspx

    Code:
    System.Reflection.AmbiguousMatchException: Ambiguous matching in method resolution
      at System.Reflection.Binder.FindMostDerivedMatch (System.Reflection.MethodBase[] match) [0x00000] in <filename unknown>:0 
      at System.MonoType.GetMethodImpl (System.String name, BindingFlags bindingAttr, System.Reflection.Binder binder, CallingConventions callConvention, System.Type[] types, System.Reflection.ParameterModifier[] modifiers) [0x00000] in <filename unknown>:0 
      at System.Type.GetMethod (System.String name, BindingFlags bindingAttr) [0x00000] in <filename unknown>:0 
      at System.Web.UI.TemplateControl.CollectAutomaticEventInfo () [0x00000] in <filename unknown>:0 
      at System.Web.UI.TemplateControl.WireupAutomaticEvents () [0x00000] in <filename unknown>:0 
      at System.Web.UI.Page.ProcessRequest (System.Web.HttpContext context) [0x00000] in <filename unknown>:0 
      at System.Web.HttpApplication+<Pipeline>c__Iterator2.MoveNext () [0x00000] in <filename unknown>:0 
      at System.Web.HttpApplication.Tick () [0x00000] in <filename unknown>:0
    This is the code for version.aspx

    Code:
    <%@ Page Language="VB" %>
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <script runat="server">
         Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
            Try
                Response.Write("Your ASP.NET version is: " & System.Environment.Version.ToString())
            Catch ex As Exception
                Response.Write(ex.ToString())
            End Try
        End Sub
    </script>
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title>ASP.Net Test</title>
        <script runat="server">
         Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
            Try
                Response.Write("Your ASP.NET version is: " & System.Environment.Version.ToString())
            Catch ex As Exception
                Response.Write(ex.ToString())
            End Try
         End Sub
        </script>
    </head>
    <body>
        <form id="form1" runat="server">
        </form>
    </body>
    </html>

  7. #27
    hernandez9039 is offline x10Hosting Member hernandez9039 is an unknown quantity at this point
    Join Date
    Feb 2010
    Posts
    19

    Smile Re: How to get ASP.Net to work at x10Hosting

    I will try on it. Thanks a lot for sharing such an informative post. It is really helpful.
    ___________________________________
    Boob Job
    Hair Straightener

  8. #28
    gombertd is offline x10Hosting Member gombertd is an unknown quantity at this point
    Join Date
    Mar 2010
    Posts
    3

    Re: How to get ASP.Net to work at x10Hosting

    Very informative tutorial; well written. Wish it worked. I'm on hosting server starka and anything with an .aspx doesn't seem to display at all. I have no ASP code in my file, just straight html, nothing fancy and it still doesn't display. Can anybody tell me if their ASP is working or has x10hosting simply stopped supporting it?

  9. #29
    mlgtns is offline x10Hosting Member mlgtns is an unknown quantity at this point
    Join Date
    Feb 2010
    Posts
    13

    Re: How to get ASP.Net to work at x10Hosting

    This is so interesting... Thanks.

  10. #30
    rafey is offline x10Hosting Member rafey is an unknown quantity at this point
    Join Date
    Apr 2010
    Posts
    1

    Re: How to get ASP.Net to work at x10Hosting

    um, i can't seem to find my .htaccess file. where is it supposed to be located? it's not in the public html folder where all my other files are. when i try to access my uploaded .aspx files, i get a "this webpage is not available" error...

+ Reply to Thread
Page 3 of 6 FirstFirst 12345 ... LastLast

Similar Threads

  1. Replies: 10
    Last Post: 09-19-2009, 02:05 PM
  2. Ok, so I'm trying to decided wether to use asp.net or php
    By mrfish in forum Programming Help
    Replies: 8
    Last Post: 06-16-2009, 06:59 AM
  3. Website not work - goes to x10hosting homepage
    By MIKE-STAMP in forum Scripts & 3rd Party Apps
    Replies: 6
    Last Post: 12-08-2007, 11:15 PM
  4. Replies: 6
    Last Post: 09-28-2006, 04:52 PM
  5. Account Suspended
    By tehpwner in forum Free Hosting
    Replies: 7
    Last Post: 10-17-2005, 08:08 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
x10hosting free hosting for the masses
dedicated servers