Web Forms :: Deploy An Application In Existing Website?

Nov 4, 2010

What are the options available to call another web applications hosted in the same server. Eg: i have a application App1 and App2 hosted on the same server.i just wanted to call App2 from App1 how would i do it.

The most important point is that I can not change the url on the address bar to call the page of the 2nd web application.

Whatever I have achieved so far is I have added a link to my 1st application which redirects to the 2nd application, but it is changing the url on the address bar, I want to redirect to the 2nd application from within the 1st application.

View 3 Replies


Similar Messages:

Configuration :: How To Deploy An Application Containing A Website And Console Application On IIS

Jul 20, 2010

I have an application which has a website and a project. The project contains an executable file which I'm trying to run as a process from the website's Global.asax file's application_start(). When I run this application from localhost, everything runs smoothly but when I deploy the application on IIS, application_start's code is executed and I can see the process name in the taskmanager but I cannot see the window which the console application normally starts in (when i run the application on localhost) and neither is the code executed.

Here's what I'm doing:

-- copied website and project in wwwroot
-- made a virtual directory of the website
-- when i run the website, I see the process in taskmanager but the code is not executed.

I am new to deployment and IIS, and would really appreciate I someone could tell me what i'm missing

View 2 Replies

Deploy Application In The Same Website As Sharepoint

Jul 15, 2010

I am trying to deploy the Bugtracker.NET tool [URL], which is a normal ASP.NET 2.0 application, into the default web site of an IIS which already has Sharepoint installed in it. The OS is Windows Server 2008 R2, IIS 7.5 and Sharepoint Services 3.0. The question is that when I execute the application, I get a NullReferenceException because HttpContext.Current.Session is null, and I think that this could be due to a problem with the configuration of the web site, as the application runs perfect in web sites with no Sharepoint installed.

I already know that Sharepoint customizes the web site with handles, modules and so on, that all applications in the web site inherit, modifying their behavior. I have already given to the ASP.NET application Full trust level, enabled Anonymous authentication and InProc session state, but I am still getting that HttpContext.Current.Session is null. Even changing the app pool from Wss3AppPool to DefaultAppPool does not succeed. Maybe someone could tell me which settings do I need to tweak in the web site in order to avoid this exception.

View 1 Replies

Configuration :: Tried To Add To My Existing Website, A Virtaul Path To The Webapplication Und Converted To An Application?

Aug 5, 2010

i have registered a domain and in IIS 7.5 created a new Website for this domain. It works great the ASP.NET website (BlogEngine), now i wanted to add another ASP.NET webapplication to call it something like this:[URL]I tried to add to my existing website, a virtaul path to the ASP.NET webapplication und converted to an application. after calling the URL i get an exception, that i could not load an assembly of the website (mydomain) : Could not load file or assembly 'BlogEngine.Core' or one of its dependencies. The system cannot find the file specified.

View 1 Replies

Trying Create Unit Testing For An Existing Website Project (not Web Application Project)?

Mar 11, 2010

I'm trying create unit testing for an existing website project (not web application project). I cannot access my under test classes unless I use accessor. However, if I use accessor, I have problem to initiate an object with passing arguments. I only want to create unit tetsing for App_Code. After searching web, and I found that I'd better to create a web application project using my current existing website project. From solution explorer, add new project ->using existing website. My questions is: what impact will have for my current website to create the new project? Should I just convert my current website to web application? If do that, will it cuase problems on my website? I am new on asp.net, still learning..

View 1 Replies

New Website Attach With Existing Website / Where Attached Website Is Behaving As Pluggable?

Feb 26, 2011

1 new website attach with existing website..where attached website is behave as pluggable. and used anywhere in any website?

View 7 Replies

Configuration :: Deploy Application That Uses Application Services Membership Provider

Aug 25, 2010

Apologies if this seems obvious, but after a week searching I can't find a clear answer to my problem.

I have developed an application in Visual Web Developer 2010 Express that uses the asp.net application services membership provider. It works well in development on my machine (data in the ASPNETDB.MDF database).

I packaged my application and deployed the relevant files with FTP to my shared hosting provider.

I took a copy of the ASPNETDB.MDF and restored it to the SQL Server 2008 on my shared hosting. I can connect to this through the Database Explorer in Visual Web Developer, but it doesn't contain any schema or data.

I know once I have the database in production I will have to make sure the connection string in web.config is poiting to it, but I don't know how to get the DB to production in the first place.

View 2 Replies

C# - Possible To Deploy Application As Desktop Application (with Server Component)

Jul 7, 2010

Question: I created an ASP.NET web application. Now it originally was meant for deployment on a webserver.
That is working, so, so far so good. My question now is: Is it possible to deploy it as a desktop-application, too? That is to say the installer installs some kind of server, plus the web application, configures the server to run this application on a localhost URL, and then creates a link in the start menu/desktop, where it opens that url (website, the application) on localhost in a web browser?

I think it should be possible, though the server wouldn't be IIS, because this is a windows component which can't be separately installed. Is there anything like this already out there? The nonplusultra would be that it only starts the server when you click on the shortcut.

View 4 Replies

Configuration :: Deploy A .NET 4 Site To Upgrade An Existing .NET 1.1 Site?

Oct 3, 2010

I am neither a server administrator nor very knowledgable about how to configure IIS, so I have the following problem:

My client hosts their public website from their own internal server running Server 2003 with IIS 6. The current website is a .NET 1.1 application configured as a website in IIS. Within this site a separate virtual directory configured as an application runs a separate .NET 1.1 app that serves as their online webstore.

I've been tasked with upgrading the website (not the webstore) to .NET 4 and getting it installed and working on their server. My initial plan was to simply change the existing websites home directory to the new home directory from the IIS admin console and be done, but then I read that this would break the application directory that hosts their online store because .NET 1.1 applications cannot be nested within .NET 4 applications. Can anyone confirm this?

View 3 Replies

Web Forms :: How To Add Webparts Solution To Existing Website

Mar 19, 2010

I have one of the .Net site running and want to implement web-parts on that site. well I am not using (aspnet_Users, or aspnet_Membership) defaults tables from aspnetDB but I have my own login controls and create new user contols ect on the site. so in short I have the users uniq ID when logged in from our corporate database nothing similar to aspnetDB.

Hecen want to know can I impelemt webparts in the existing site by just importing the tables from aspnetdb like (aspnet_PersonalizationAllUsers, aspnet_PersonalizationPerUser) to my database and what else I will require apart from these tables?

1. which list of store procedures I should coopy?

2. Any modification to my web.config?

3. Are their any functions/classes which I might have to copy to my App_Code folder to work these webparts with my exisitng site and userdetails

Is it possible ?

View 1 Replies

Web Forms :: How To Integrate CMS Features In Existing Website

Oct 29, 2013

"How to Integrate a CMS with an existing website". I have a prebuild asp.net website now i want to integrate a CMS thing with the website so that on the production floor, the admin of the website can add, edit, delete web pages according to his will without the involvement of a developer.

View 1 Replies

Web Forms :: Routing 4.0 / Deploy Website On A Remote Server ( Integrated Pipeline ) It Returns With 404 Error?

Sep 8, 2010

When I run my website on local server asp.net routing works very well, but when I deploy it on a remote server ( asp 4.0 integrated pipeline ) it always returns with 404 error.

My url route is very simple, a stored procedure gets image's id and then displays it.

Global.asax:

[Code]....

Default.cs:

[Code]....

View 6 Replies

Web Forms :: Dynamically Change Text Size In Existing Website?

Mar 4, 2010

Just want to have normal and Large Text for vision impaired users.

does anyone have any decent ideas about how to do this ?

View 1 Replies

Web Forms :: Configure Existing Database And Website To Work With Membership?

Jun 13, 2012

I have a website and a SQL Server Database. I want to use ASP.Net Membership for login and roles.

View 1 Replies

How To Deploy Website In Localhost

Jan 5, 2010

I've created one web application in ASP.NET - 2.0 Now, I want to deploy it in my localhost itself Is it posible to do so, if yes How it can be achive without having server myself

View 1 Replies

Dev And Deploy Management With SVN Of A WebSite

Oct 19, 2010

We have a .Net solution for a website, consisting of 5 projects, and there are a few(less than 10) developers working on the solution. We deploy almost on a daily basis. The question is, how to setup the SVN repo to support this scenario (the daily deploy), also mentioning that not every commited file should go to production, there is a QA check before deploying.

View 2 Replies

Configuration :: How To Deploy WebSite

Mar 30, 2010

I finished My web Site on my local pc and it works goodNow I want to upload it to server i get space from mochahost.net web siteAnd i want to upload the web siteWhat Files Should i Upload ??I'm using sql server 2008 as my database system and using linq to control the database..

View 1 Replies

Web Forms :: Blog To Integrate With Existing Application

Dec 2, 2010

I have an existing asp.net 4.0 web application and want to add a blog to it. I would like to create a new sub-directory and call it "blog". Is there some well suited blogs for this purpose?

View 7 Replies

Configuration :: How To Deploy A Mvc Website In Iis7

Jul 26, 2010

i try to used vs2010 build a mvc2 website, just as a testing. so, i include the jquery script file and some css files, it works well in the vs2010. how ever, when i deploy it to iis7/windows 2008 r2, i found all the css files ("/content/*.css") can run well, but the image files ("/img/*.gif") and script files ("/script/*.js") were absence. in fact, the website runs except the image files & script files.

View 1 Replies

How To Create / Deploy / Administer A Website

Jan 20, 2011

I'm accustomed to writing desktop applications in C#.NET. Where I have a nice little solution folder which is also under version control. So at any time, on any computer I can check out whatever version of my software I want run the compiler and have a working copy of my program.

Now I'm looking into developing websites, where the files and data are a lot more dispersed. I'm using ASP.NET, but really my question is more general and could apply to any website framework.

I'm trying to understand the proper work-flow between developing my website, a version control server, and the actual live website that users will see. Obviously this can vary a lot depending on the type and scale of the website, but I'm only considering a pretty simple site. I'm just getting started with this stuff.

All the source files for the site would be stored on a subversion server, which I would check out onto my local computer. My local computer would have a local database which I would use for development of the site. Next I would publish to a test version on my hosted server, which would point to a separate test database. This test database may periodically be replaced by a copy of the live database.

If all goes well I would then publish to a beta version of the site which points to the live data. Users could then check out the beta version to provide feedback. Finally if there are still no problems the source files for the live site would be updated.

Does this make sense? Does anyone have any comments on how this could be improved? Are there any good books or online tutorials available on developing these kind of workflows?

Also the one thing that I'm really not sure about is how to manage changes to the actual schema of the database. I figure with each version I could generate a SQL script that can be use to update the Test and Live databases on the host. However, I'd also like to be able to easily setup a new database for any version of my site with out having to run every update SQL script for every version up to the desired version. Is the best solution to use an ORM like NHibernate or Subsonic so I could always generate my database schema directly from my code?

View 1 Replies

Configuration :: Deploy Website With Different Version On IIS

Aug 16, 2010

I have source-version of project and i need to deploy it on IIS. General project it properly deploy using VS2008, but issue is, if new revision is created then i need to point new source to deploy web-site. In this case i need to remove created virtual dir for previous version. Is this possible to toggle virtual directory between two sources. I think one solution is to change virtual directory path to new one.

View 3 Replies

Configuration :: Deploy To A Non-compiled Website?

Jun 15, 2010

I was commissioned to write a search asp.net page for a company. Page works great, they finally ask me to deploy to the web server. I RDP out to the web server, and instead of finding a normal deployment, I see all the aspx pages along with their code-behind files. They do not pre-compile their pages.

So in an environment like this, how do I deploy my asp.net page? I can get pages to run that don't have dependencies on other things, but this particular page uses Linq. So in my web project, I have a dbml file, and it's generated pages. I have put the dbml and related files on the webserver. The page fails when it encounters the using datacontext statement.

How can I tell my page where this code is?

View 4 Replies

Necessary Files To Deploy For Website Using Linq?

Jun 16, 2010

I'm new @ linq and can't find anywhere where it mentions if the dbml or other files are necessary to deploy with a website.

View 2 Replies

Deploy All Files In A Website Or Just The Ones Required To Run It?

Jun 1, 2010

Just wondering is there any drawbacks to publishing a ASP .NET web application by copying all the files in it? (That means all the .cs, .csproj files will be included in the published folder)

So far I can think that the published folder's total size may become a little bigger (but that a negligible issue for me).

View 4 Replies

Deploy A Website To Internet (SQL Server )?

Aug 21, 2010

I am new to the web development.I have built my website in visual studio 2008 using Sql server 2008 as backend.Now I want to know the whole process of deploying the website in some web domains and as well as my database to some database domain.I didn't purchase any domain till now.I want to know about web hosting as well.

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved