Is Mono's VB.Net Support Ready For A Production Site
Jan 20, 2011
Previously, I've only used Microsoft-centric solutions, but for an upcoming ASP.Net project I'm considering using Mono and hosting it on a Linux Amazon EC2 instance. Based on the responses to my previous question, this sounds doable. However, I'm most comfortable with VB.Net and I'm wondering how well Mono supports it.
Does anyone have first-hand experience writing ASP.Net applications for Mono using VB.Net? If so, I'd like to know how it went, what kind of compatibility issues you ran into, and if you consider Mono's VB.Net support ready for use on a production site? I know Mono's C#.Net support is very good, so that's my fall-back plan, but I'd really prefer to use VB.Net.
View 4 Replies
Similar Messages:
Jan 29, 2010
Is there any risk associated by using asp.net mvc 2 on production or stick to the asp.net mvc 1.
View 4 Replies
Jan 5, 2010
Does anyone know how to get to work the authentication mechanism configured using Web Site Administration Tool under Linux running Mono? Is it even possible?
View 3 Replies
Mar 1, 2010
Is it already possible to run a ASP.NET MVC 2.0 / NET 4 web site in production and later on the 12 of April to replace it with the final versions? I notice that the Microsoft Web Plataform Instalar includes NET Beta 2 ... Not Net 4 RC.
And it does not include MVC 2 RC ...
View 2 Replies
Dec 17, 2010
we cannot login to one of our asp.net production website. Once login ID and password are entered on the login page, the site just stays on the login page without giving any errors whatsoever and without opening the default page.
View 3 Replies
Dec 3, 2010
I've setup an ASP.NET MVC 2 site several times on our test system on IIS 6. I'm fine with having to use the .aspx extension on controllers. The Global.asax.cs file looks like this:
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.html/{*pathInfo}");
[code]...
View 2 Replies
Feb 21, 2010
1-i have AwebSite With English language,i want to support this site with Other Language
(arabic language),how can i do that(website with Multiple Language)??
2-how can i make photo gallery in my website?
View 4 Replies
Dec 1, 2010
i have developed a production site in godaddy server.Now i want to display a custom error page if there is any error occurs in the site.i have made following changes in the web.config file ,
<customErrors mode="On" defaultRedirect="/Areas/User/Views/Shared/Error">
<error statusCode="403" redirect="NoAccess.htm" />
<error statusCode="404" redirect="/Areas/User/Views/Shared/Error" />
</customErrors>
But now if error occurs the server will display his default error page for 404 page.Now i want to display my customised error page.Please tell me the entire steps to implement this in asp.net mvc 2.0.i,e is there any coding i have to write in then controllers or in the global.asax.
View 1 Replies
Apr 12, 2010
I have an application that runs perfectly fine on my local machine. So it was deployed on production server and the site was running (but with some errors). So I corrected the errors and redeployed the application. But the changes are not reflecting! I am using the IIS to host the same. I tried restarting all the services, the IIS itself, the server, cleared the caches...
View 1 Replies
Apr 22, 2010
I am new to webpage building.
I have sucessfully created a .aspx form with submit button feature that publishes correctly in my development environment running localhost. I am now attempting to move this form into my public website and it will not render in the public environment, only returning the code of the form.
View 2 Replies
Jan 16, 2010
I need to make my site work well on a blackberry, i haven't put too much effort into getting this working yet, but i have a few questions which google is struggling with.I've read about detecting brower type and modifying the default behaviour of asp.net controls hereHow would I go about supplying a differant stylesheet to a specific browser, should i just do this?
if (Request.Browser.Browser.ToString() == "blackberry") //pseudocode
{
Response.Write("bb.css");
}
else
{
Response.Write("bb.css");
}
This will work fine, but i feel like there is a better method, i'm sure i've read about something in the past but i can't seem to recall.I'm also considering a response.redirect to a differant page for a blackberry, which at the moment i would implemenet in a similar way.
View 5 Replies
Nov 2, 2010
I want to support the following scenarios on my ASP.NET MVC website:First time visitor wants toregister, via facebook connect. I'dlike the user to have an entry in myuser membership table - so I havethem enter a username/password(email gets populated via facebookconnect).Registered user returns to mysite, logged into facebook already.I'd like my site to see they'relogged into facebook already and
auto log them into my membershipsystem.Registered user returns to msite, but is not logged intofacebook.
View 1 Replies
Apr 12, 2010
I have a hosted site and just added some additional error notification to my global.asax file and works like a charm. I decided to add the same logic to our test server and it doesnt work. The server.transfer never happens and the email never gets updated. Now i know the email works on the test and production server since we have other pages that use the same SMTP server name and setup as i have in the global file. Below is my code as it is in the file now. I setup a test page to cause an error and the page displays the detailed error which we dont want. But i would like to be notified if this happens. What am i missing? I can only assume that its a IIS confige issue, since the exact same code works on a hosted site, but not at work on our test or production servers. Here is the code i have in the global.asax
[Code]....
View 18 Replies
Jan 21, 2011
I have created my site using ASP.NET Personal Starter Kits 3.5. I use Visual Studio 2008 only . .with its built-in SQL Server (2005 Express) ... my database in App_Data is ASPNETDB.MDF ...
I have created some of my tables also ....in ASPNETDB ..
In my local PC the site was running fine ...
But when I publish my site on production server it doesn't work and shows the following error
<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's configuration tag to point to a custom error page URL.
<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>
My hosting provider connection string ..
<add name="ConnectionString" connectionString="Data Source=69.16.253.19;Initial Catalog=usa_data;Persist Security Info=True;User Id=user;Password=pass" providerName="System.Data.SqlClient"/>
My hosting provider gave me the connection string to connect to the SQL Server 2005 but it doesn't work...
I don't understand why my site was running fine using the production SQL Server 2005 in my local PC when I include ASPNETDB.MDF file in App_Data in my local pc only ..if I remove file ASPNETDB.MDF from App_Data of my local pc ... the site stops working ...
Can anybody tell em how to fix this ... !! I am very tensed since last 3-4 days
View 1 Replies
Sep 16, 2010
I am trying to create a page where I can attach sticky notes at runtime exactly as explained in this tutorial.
I have converted the sample in ASP.NET MVC 2 (which is the technology I am using) and everything works fine.
So I have a DIV in my view
[code]....
Of course I could change my view to create dinamically the notes div on DOM ready but before going to change all the code I was wondering if i can have some code to make them respect the positions they have meant to be to.
View 1 Replies
Mar 7, 2011
I understand I can use either the CodeDOM or Mono for compiling and executing C# code on the fly. Which of these are suggested given the security concerns of executing code and flexibility? EDIT: I need to create an editor in which any user can enter code and choose to execute it. My concern is that if they have malicious code (accessing the file system for example) then I need to take precautions to prevent this from happening. How would I do this using CodeDOM or Mono?
View 2 Replies
Feb 9, 2011
I just spent the last week and a half working on a gridview for a user and now he says he wants it so that all the records are updatable! He doesn't want to click on the Edit button, he just wants everything open for update. Is this possible? Or would anther control do it?
View 3 Replies
Jun 29, 2010
I made a simple network tool using Visual Studio 2010 Express, ASP.NET C#.
When I finished, I deployed it to a Local IIS 5.1 Server. I'm running XP(BTW).
The situation right now is that every time I add/change something to suit my needs, it changes it directly on the server - which is obviously unwanted. I want to understand why this is and how to change it. I don't want every test I do to be implemented directly on save.
ps.
On Project->Properties, Web tab. I verified that under the "Servers" option, "Visual Studio Development Server" in checked and not "Local IIS Web Server"
View 4 Replies
Dec 2, 2010
am compiling the asp.net web application page by page using "gmcs" command in Mono.ut i want to compile the whole asp.net website at once using Mono command.
gmcs /t:library /out:bin/AJAX.dll -r:System.dll -r:System.Web.dll -r:bin/AjaxControlToolkit.dll Default.aspx.cs Default.aspx.designer.cs I do not want to do like the above one, instead i want to compile the whole folder containing files at once.
View 1 Replies
Nov 25, 2010
I'm looking for a CMS running under Mono framework: this is needed to have it deployed on Linux-based (Ubuntu/Debian) machines.
told me about OrchardCMS, but it seems it's not compatible yet.They also told me about Umbarco, but I haven't found any information on compatibility.
View 1 Replies
May 21, 2010
I am not sure if XSP2 is using mono or .NET in my Windows box.How can I be sure?
View 3 Replies
Jan 24, 2010
I have an ASP.NET application which I'd like to try running on Mono, just as an experiment. When I bring the application as it is to Mac, start xsp2 on the directory, it runs as I would imagine it should. That is, it crashes on because of the file system path differences ( vs / in directories).
This is where I would like to open it in MonoDevelop and fix the problems. But since it was website, it doesn't have .csproj file. And it seems that there's no .sln file either, since Visual Studio stores those to some random directory by default. In Visual Studio you could open the project with Open -> Web site... -> Local IIS etc., but I see no such thing in Mono.Is there a way to open a directory as a web site or somehow generate the .csproj file?
View 4 Replies
Dec 21, 2010
Ok what i want to know is what is the accurate method to use aspnet_regiis.exe when you are ready to start you app in the IIS.
What i have done but only tested locally is use this suntax:
aspnet_regiis -pef "connectionStrings" "d:aspdirmysite"
As i see lot of switches in aspnet_regiis (p.e. i have seen something like:
aspnet_regiis -pe "connectionStrings" -app "/SampleApplication"), i'm not sure what is the accurate one or if they deliver the same result.
The -pef i presume is when your app is on your hard drive.Will it play when on the IIS? Anyway what is the common way to encrypt.
View 6 Replies
Mar 15, 2011
a have two aspx pages page1.aspx and page2.aspx. i have an href in page1.aspx <a id="GoHref" href="page2.aspx"> i want that when users click docHref to be redirected to page2.aspx and download a doc file via an automatic click on <a id="DocHref" runat="server">
page2.load is as below:
[code]......
But it doesn't work !
is this a good way to download a doc file ? Or there a better server side way?
View 2 Replies
Jul 14, 2010
I have this below alert set on Document.Ready function. But this alert is not seen when I user Firefox. the alert is seen in IE7
$(document).ready(function() {//hide err messages
alert('you are here');
});
View 3 Replies