Action Link To Simple Pages In The Root Directory?

Apr 7, 2010

I've got menu in my ASP MVC project, and can when I use

<li><%= Html.ActionLink("My", "My")%></li>

it redirects me to .../Home/My
and if I got

<li><%= Html.ActionLink("My", "My", "ZZZ")%></li>
it redirects me to .../ZZZ/My

the problem is I've got some pages out of MVC , with simple Inherits and they are in the root so I need to got to /My.aspx

How can I redirect to /My.aspx in my MVC menu ?

View 1 Replies


Similar Messages:

Addressing From The Root Directory Of Website In Action Script

Oct 30, 2010

I have a flash banner in my website and it has some navigation links on it. Because I have several different folders in my website I need address them from the root. At the moment i use getUrl like this: getURL("ArticleList/Default.aspx"); But it doesn't work .

View 2 Replies

Web Forms :: ScriptManager Uses Website - Root Instead Of Application Root Directory

Jan 27, 2010

I ran into the following issue when trying to run a test website on IIS 7.5 (Windows Server 2008 R2 DatacenterEdition). The web-app is configured to run with framework version 3.5 in a .Net 2.0 app pool. Also the framework 4.0 beta 2 is installed on the server. The application named 'TestPfade' is located under the website's root named 'Default'. It is not only a virtual directory but defined as an application. The folder structure looks like this: The markup of the sole document reads as follows:

[Code]....

When viewed in a browser the image gets shown because the given relative path is correctly resolved to 'images/Lighthouse.jpg' but the paths to the ajax-framework resources also include the application's root folder and therefor aren't found: 'src="/TestPfade/WebResource.axd?d=1bX...' Here is the complete html-source generated:

[Code]....

View 9 Replies

Virtual Directory Root Vs Default Web Site Root

Feb 11, 2011

I am using iis 5.1 in which we have only only one default website, I have two projects v2 and v3 my website points to v2 projects and have some folders images, styles etc now i have a virtual directory under this website that is hosting project v3 and having the same folder hierarchy as v2 in the home page of the both projects i have img src="imagesedlogo.gif" alt="logo"/> but this shows the same image that is in the v2 directory, How can i show different images for both projects. using "" get the root of the web site but how can i get the root of virtual directory under that website

View 2 Replies

MVC :: Edit Action (GET And POST) For An Entity That Multiple Pages Link Into (GET EDIT)?

Jan 5, 2010

Consider the following scenario.You have a Edit action (GET and POST) for an entity that multiple pages link into (GET EDIT). What is the best way of getting back to the page that linked to the edit action? Adding a returnTo url in the query?

Example, from MyCart/3 we have a edit product link
/Product/Edit/5?returnTo=MyCart/3 (but url encoded)
And from Producer/45 we have this link
/Product/Edit/5?returnTo=Producer/45

Is there a better way to do this?

View 4 Replies

Why Necessary To Create Virtual Directory In IIS When Website Content Is Placed In IIS Root Directory

Feb 13, 2010

As virutal directory points to physical path of the application, so if the IIS root directory is C:inetpubwwwroot and the application is stored at D:websites, than we need to create a virtual directory but if the application content is placed at C:inetpubwwwroot, then why still need to create virtual directory.

View 3 Replies

Configuration :: Web.config Root Directory Versus Sub Directory

Nov 30, 2010

In the root directory my web.config is doing the job of loggin in people to a website.

I don't need this behaviour in a directortory of the root directory. How do I solve this problem?

This are the authentication thins in my web.config:

[code]....

View 1 Replies

Configuration :: Publishing Only Works In Root Directory But Not Sub Directory?

Jan 6, 2011

I created a default website from Visual Studio 2010 but it works only when I deploy it on to the root directory. It fails when I publish it onto a sub directory.

An example will be

[URL]- works

Description: An error occurred during the parsing of a resource required to service this request. review the following specific parse error details and modify your source file appropriately.

Parser Error Message: Could not load type 'MyWebPage.SiteMaster'.

Source Error:

[Code]....

View 2 Replies

Web Forms :: How To Save Images Into Sub Directory Instead Of Root Directory

Sep 26, 2013

This codes below create sub-directory, upload images, save in to database but images save in main directory (which is Albums). My concern is I want to save it into sub-directory that images uploaded..

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Upload Image</title>
</head>
<body>
<form id="form1" runat="server">

[CODE]..

View 1 Replies

Test That A Controller Action Simply Returns A Link To Another Action?

Apr 29, 2010

Lets say I have a simple controller for ASP.NET MVC I want to test. I want to test that a controller action (Foo, in this case) simply returns a link to another action (Bar, in this case).How would you test TestController.Foo? (either the first or second link)

My implementation has the same link twice. One passes the url throw ViewData[]. This seems more testable to me, as I can check the ViewData collection returned from Foo(). Even this way though, I don't know how to validate the url itself without making dependencies on routing.The controller:

public class TestController : Controller
{
public ActionResult Foo()[code].....

View 1 Replies

How To Get Active Directory Root Name

Oct 28, 2010

I want to retrieve data from Active Directory but I am not sure how can I get the root name available in my Active Directory. I know that if I don't give any root name while creating DirectoryEntry object i.e

DirectoryEntry root = new DirectoryEntry("");

then it will start from top most node of the ActiveDirectory tree but if i want to start from some where in mid what should be the root name ? How can i get all root names from Active Directory ?

View 4 Replies

VS 2010 How To Change Root Directory

Dec 21, 2010

So I created a website in visual studio 2010 and I transfer it to my web host.

The problem is the webhost has the a file structure like this:

[URL]

And I put all my files in wwwroot, and it works fine on the web.

But now in VS, since I had to add [URL] folders, I am getting compile errors that say "This error can be caused by a virtual directory not being configured as an application in IIS".

So my question is - how do I either A) change the root application for IIS on my machine to be at the wwwroot levelB) change VS to let me copy files from the root directory in VS to the [URL] dirctory.

View 8 Replies

Configuration :: Why Is The Directory Only Seen When Outside The Root Path

Dec 2, 2010

I'm trying to deploy my web project to my local IIS server (C:inetpubwwwrootlunchbox). By default the in is created inside the project directory - i.e lunchboxin. This setup, however, gives me the following error when I try to open the site:

When I move the in directory outside the project root (i.e C:inetpubwwwrootin), the site opens up just fine. I'm also able to test the web project from Visual Studio without any issues.

Can someone tell me why I have to move the in directory outside the project root to make the site work? What can I do to not have to do this?

View 4 Replies

C# - Access Folders In Root Directory?

Apr 4, 2011

I am developing an asp.net web application. I have to access one of the image in images folder in root directory. I am using following code in my code behind file.

string imageDirectory = HttpContext.Current.Server.MapPath("~/images/");
string imageUrl = imageDirectory + "/img1.bmp";

This works fine in my local machine. My question is does this code work when I move my application to production ?

View 2 Replies

Remove The App_offline.htm From The Application Root Directory?

Sep 18, 2010

I get the message "This application is currently offline. To enable the application, remove the app_offline.htm file from the application root directory. "

However, this is no app_offline.htm file in the root directory. Where in the heck is it?

I am looking in the Solution Explorer, and I also looed in Windows Explorer . . . not a sign of it. ?

View 4 Replies

C# - Send Simple TextBox Value To Action With An ActionLink?

Jan 30, 2010

i don't want to use <input type="submit"> mainly because it's a button, i'd rather user ActionLink, so i am using Ajax.ActionLink, and i'm not sure what to place in the routeValues argument for it to pickup the new (edited) data (user enters comments etc) and send it to my action.

this is what i have, but of course, it sends the original comment before user edit back to the server/action

<%= Ajax.ActionLink("Update", "UpdateComment", Model.Comment,
New AjaxOptions With
{.UpdateTargetId = Model.CommentDivId, .HttpMethod = "Post"})%>

View 8 Replies

Web Forms :: Add A Link On Root Node Of The Treeview?

May 12, 2010

I am binding a treeview through a xml file.

my xml file's code.

[Code]....

I want to add a link of my default.aspx to <MainMenu> tag.

View 7 Replies

C# - Saving Files In The Root Website Directory In Apache

Jul 16, 2010

I have an ASP.NET application running on Apache server with mod_mono. If I have a folder called "temp" located in the website's root directory and run the following code

System.IO.TextWriter tw = new System.IO.StreamWriter("temp/test.txt");
tw.WriteLine(DateTime.Now);
tw.Close();

it saves test.txt in C:Program FilesMono-2.6.4in emp on the server. If I add a slash to the directory name like this: System.IO.TextWriter tw = new System.IO.StreamWriter("/temp/test.txt"); It saves it to C:/temp. Both do not do what I want. How do I get the code to save the file to the temp folder inside my website's root directory? Is this a mod_mono issue or something to do with Apache? I have tried adding this line to httpd.conf Alias /temp "C:/Path_to_root_folder/temp" without any luck. I shouldn't have to use alias if the temp folder is within the root directory, correct? In my development environment which uses XSP as the web server everything works as expected. It is only a problem when running on Apache.

View 1 Replies

Visual Studio :: Cannot Publish Files In Root Directory?

Oct 18, 2010

I have a website(not an application) built in VS2008. When I try to publish the site, any of the files that are in the root folder are not published. This has only just started happening and I am unsure what I have changed to cause this. The files are not excluded from the project.

View 1 Replies

Web Forms :: Uploading Image File Above The Root Directory?

Jan 12, 2011

I am developing website in asp.net,I am hanging up in following problem:

I have 2 subdomains (say admin.D1.com & sms.D1.com).

For security purpose, I want to save and retrieve image files at particular folder(say Fldr1),above to both subdomains.(File should be saved and retrieved from both the subdomains)

[code].....

It gives follwing error:

"The SaveAs method is configured to require a rooted path, and the path [URL] is not rooted."

View 5 Replies

Redirecting Default.aspx To Root Virtual Directory?

Aug 31, 2010

I have a simple ASP.NET 3.5 application running under IIS7 under a virtual directory. So the URL of my app is like http://site.com/app. I want to 301-redirect the request to site.com/app/default.aspx to site.com/app for better SEO. I have to do this redirect through code only, not by any IIS settings. I am unable to do so via code mentioned in this article:

[URL]

The code:

if (request.RawUrl.Equals("/default.aspx"))
{
newUrl = string.Format("{0}://{1}{2}",
request.Url.Scheme,
request.Url.Authority,
request.RawUrl.Remove(request.RawUrl.LastIndexOf("/default.aspx", StringComparison.OrdinalIgnoreCase)));
context.Response.Status = "301 moved permanently";
context.Response.AddHeader("Location", newUrl);
}

seems to go into an infinite loop when the application is under a virtual directory. the request.RawUrl property always returns "/default.aspx" even after a 301 redirect causing the infinite loop.

View 3 Replies

HTTP POSTed Files Automatically Uploaded To Root Directory

Jun 14, 2010

I just inherited an ASP.NET WebForms web application that I was tasked with refactoring. One of the features is a file upload and while debugging I noticed that as soon as a file is posted to a certain page/handler, it is automatically uploaded to the root directory of the application. The file is then moved to the proper location. I can't seem to figure out whats causing this automatic upload of the file. Is there something I'am overlooking in ASP.NET WebForms that allows this to happen? Is it an IIS configuration or something?

View 1 Replies

C# - How To Pass The Data Path For Object Flash Tag From The Root Directory

Sep 21, 2010

I'm using urlrewriting to rewrite my url. Let me introduce my problem by bellow example: Here is old url: http://localhost/test/pages.aspx?pageid=1 I have 2 cases to rewrite:

http://localhost/test/url-rewriting-get-start.aspx
http://localhost/test/url-rewriting/get-start.aspx

The first case is ok, but I would like to use the second case. In this case I must use root path for image, css and object tag (for flash):

With image, I modified to: <image src="~/images/icon.jpg" runat="server"/>
With css, I modified in head tag: <head runat="server">

But with the object tag, I don't know how to set root for the data, movie parameter:

<object data="anim/head.swf?xmlPath=./menu_flash.html" type="application/x-shockwave-flash" width="962" height="228">
<param name="movie" value="anim/head.swf" />
<param name="quality" value="high" />

View 2 Replies

Web Forms :: Programmatically Creating The Page And Save It To The Root Directory?

Sep 29, 2010

How i solved probelm of dynamic creation of aspx page on fly and save it to the disk or root direcotry of the Project.

View 5 Replies

Web Forms :: Use Link Master Pages In Content Pages?

May 11, 2010

My requirement was to share master files among diff projects i read this doc [URL] so i use this technique to share msster pages among my diff projects in a soln but i dnt know how to reference such shared master page as if i use such

<%@ Page Language="C#" AutoEventWireup="true" MasterPageFile="../masterPages/masterInvGen.Master"

View 1 Replies







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