Web Forms :: Adding A Virtual Folder Into Sitemap Generated URLs?

Feb 15, 2010

I'm not sure that what I need to do is possible.I'm using the SQL SiteMap Provider as the source for my main navigation menu. When a user hits my site, they are asked to enter their location (town name). This preference setting is being stored using the Profile Provider. The page then reloads to showwww.mysite.com/liverpool in the address bar, for example. The information shown on this page is relevant to where they are. I'm using URL rewriting to map this to a page that is passed a parameter (eg. viewZone.aspx?ZoneID=234). I now need to insert the town name into some of the URLs generated from the sitemap. For example:www.mysite.com/cars-for-salewould becomewww.mysite.com/liverpool/cars-for-saleSome URLs would need to remain unchanged such as www.mysite.com/shop.Do you know if this is possible? If needed I could put a placeholder inside the URL in the database - **townName**/cars-for-sale and then run some kind of replacement procedure at run-time, but I don't know where in the execution process I could do that.

View 5 Replies


Similar Messages:

Configuration :: Adding A Virtual Folder To The Application Folder?

Sep 21, 2010

I have an asp page that needs to download files off of a virtual directory.

I wanted to add the virtual directory to the Visual studio app.

View 2 Replies

Web Forms :: How To Create A Sitemap For Dynamic Urls

Jun 3, 2010

i have a website that generates urls dynamicly.(?Department=1&Category=4&Page=2) then i rewrite the url to (Phone-d1/Sony-Ericsson-c4/)

I have hunderds of products so how do i create a sitemap for this, or should i doit only for the Departments, if so how would i do it.

View 2 Replies

C# - Generate Sitemap From URLs In Database?

Oct 20, 2010

URLs are stored in a database, example:

home/page1
gallery/image1
info/IT/contact
home/page2
home/page3
gallery/image2
info/IT/map
and so on.

I would like to arrange the above urls into a tree fashion as shown below (each item will be a url link). The final output would be a simple HTML List (plus any sub list(s))

thus:

home gallery info
page1 image1 IT
page2 image2 contact
page3 map

Programming Language is C# , platform is asp.net

EDIT 1:

In the above example, we end up with Three Lists because in our example there is three main 'groups' eg: home, gallery, info.

View 3 Replies

Web Forms :: Sitemap Xml Structure - Can Add Levels (sub Catagories) If All Files Are In The Same Folder

May 11, 2010

I have four categories, which I would like to show up in my breadcrumbs:

ex:

Home > Poems TOC > MyPoem

Home > Songs TOC > MySong

can I structure the xml in the Web.sitemap doc, so that even if the files are in the same directory, they will dispaly as above. (the TOC entries are table of content pages, which call the actual content pages)

View 1 Replies

Web Forms :: Exception Comes After Adding Web.sitemap File

Aug 26, 2010

I added web.sitemap file in my project.on Debug it shows an exception like this"The file

web.sitemap required by XmlSiteMapProvider does not exist."

how to solve the above error and any changes made in web.config file after adding web.sitemap file?

View 3 Replies

Security :: Saving To Virtual Folder?

May 31, 2010

I created a website with a file manager where the client can upload, delete, preview etc. This works fint but the problem is that the folders where the files are going to be saved will be on another server. I am testing this locally for now but will deploy it once finished

I setup my website in the IIS. Created a 'Virtual Directory' and linked the directory to a folder in my 'C://'. The virtual Dir path is "~/upload" but when i user Server.Mappath() it gives me "C:/inetpub/wwwroot/website/upload" insted of the actual dir path "C:Documents and SettingsUserMy DocumentsVisual Studio 2008WebSitesWebsiteuploads"

View 6 Replies

Make IIS Virtual Directory A Folder Again

Jun 29, 2011

I have web code that was trying to process a pdf file and it wasn't working - I was getting a path "is not a valid virtual path" error, so in IIS (O/S is Windows 2008 R2) I made the folder a virtual folder. That didn't work and I got it working in another way so I want to make that folder just a regular folder again and not a virtual directory.

Also, I don't understand the way in which I got it working. I had the site working on one server and not another, so I compared them. I realized where it was working I hadn't added an entry to the web.config file that I was trying to read. This is the config entry:

<add key="PdfFolder" value="wherever"/>and this is my code:

Code:
fileName = Server.MapPath(AppSettings("PdfFolder")) & "pdf\_FLYER.pdf"

The absence of the config file entry allowed the code to work. Its presence gave me the virtual directory error. So it's like Server.MapPath resolved to the correct place with a null argument.

View 11 Replies

Configuration :: Write Sitemap.xml On Server Root Folder?

Feb 28, 2011

I want to write a sitemap.xml to the root folder of my website automatically every month. Ofcourse I havent given the IIS_IUSRS group full permissions on the root folder of my website or on sitemap.xml

But what permissions should I give to which usergroup on which folder/file in order to have my ASP.NET application update the sitemap.xml from within the asp.net web application?

View 6 Replies

WebConfigurationManager Error After Adding SiteMap?

May 16, 2010

I'm getting this error:

Compiler Error Message: CS0118: 'Configuration' is a 'namespace' but is used like a 'type'
Configuration myWebConfig = WebConfigurationManager.OpenWebConfiguration("~/");

This code has been in place for 5+ months without this issues, only today after adding this sitemap code do I have this issue.

<siteMap defaultProvider="ExtendedSiteMapProvider" enabled="true">
<providers>
<clear/>
<add name="ExtendedSiteMapProvider" type="Configuration.ExtendedSiteMapProvider" siteMapFile="Web.sitemap" securityTrimmingEnabled="true"/>
</providers>
</siteMap>

I tried adding "System.Web." before the "Configuration ", but that did not work either:

System.Web.Configuration myWebConfig = WebConfigurationManager.OpenWebConfiguration("~/");

Error 1 'System.Web.Configuration' is a 'namespace' but is used like a 'type'

View 2 Replies

C# - Adding A .ASCX Item To The Sitemap?

Aug 23, 2010

Is there a way to add .ascx files to a sitemap such that it will load/unload the controls based on the last ones visited? The problem is i have a page that contains a few controls that get placed under one another, and i'd like to just be able to jump between them with the sitemap instead of creating a new page for them... this is what i'm trying to put into the sitemap without luck (see Product List, Product Detail):

<siteMapNode url="Default.aspx" title="Home" description="Home Page of Genuity">
<siteMapNode url="UserFunctions/ChangePassword.aspx" title="Change Password" description="Change Password" />
<siteMapNode url="Setup/EditUsers.aspx" title="Edit Users" description="Edit Users" />
<siteMapNode url="Setup/EditTraits.aspx" title="Edit Traits" description="Edit Traits" />
<siteMapNode url="DataEntry/EditSeedPartners.aspx" title="Seed Partners" description="Seed Partners">
<siteMapNode url="WebControls/Product List.ascx" title="Product List" description="Product List" >
<siteMapNode url="WebControls/ProductDetail.ascx" title="Product Detail" description="Product Detail" />
</siteMapNode>
</siteMapNode>
</siteMapNode>

View 1 Replies

MVC :: Need To Copy The Whole Solution Directory To The 'virtual Folder' Equivalent Location?

Sep 5, 2010

I am going to deploy my MVC 2 website, do I need to copy the whole solution directory to the 'virtual folder' equivalent location?

View 27 Replies

Forms Data Controls :: Adding Spaces In A String Which Is Generated Dynamically In C# Code?

Jul 20, 2010

I have a grid. I am building and populating it dynamically in C#. Below mentioned is my issue:

string s1 = "string1";

string s2 = "string2";

And then I have a header cell text which needs to be populated like this.

headercell.text = s1 + new string(' ', 20) + s2;

I am not able to get the extra 20 spaces between s1 and s2. It gives me just one space instead of 20 spaces.

I tried using headercell.text = s1 + s2.padleft(' ', 30); even then I am not able to get more than one space between strings s1 and s2.

View 9 Replies

Adding An Internal ASPX Page With Relative URL To CRM 4.0 Sitemap

Feb 8, 2011

I've added a subarea to my sitemap in CRM 4.0, and for absolute URLs it works as expected. However, for relative URLs it does not. The page in question is internal and is accessed through:

http://localhost/ISV/<orgName>/Account.aspx/ExternalDocumentList

However, I would prefer writing this in sitemap:

/ISV/<orgName>/Account.aspx/ExternalDocumentList

When this is expanded, CRM/IIS rewrites it to:

http://localhost/<orgName>/ISV/<orgName>/Account.aspx/ExternalDocumentList

For reference, here is the sitemap addition (which doesn't work):

<SubArea Id="custom_documentHistory" Url="/ISV/<orgName>/Account.aspx/ExternalDocumentList">
<Titles>
<Title LCID="1033" Title="Document History"/>
</Titles>
</SubArea>

How can I link to this page relatively?

View 1 Replies

Folder Generated Gallery Not Displaying In Alphabetical Order?

May 21, 2010

I'm an ASP newbie, so I'm trying to muddle through setting up this image gallery piece by piece as I learn the language. This particular issue has me completely stumped though. The site in question: [URL] I'm very confused as to why the navigation menu is listing out of alphabetical order. Here's the code that I'm -pretty sure- is governing this chunk of info:

[Code]....

View 2 Replies

Forms Data Controls :: Programmatically Creating Chart Control And Adding It To Dynamically Generated Table?

May 21, 2010

I am stuck in chart controls...Here is my prob... There is a ListBox containing some items...when user selects multiple items from the list box I want to generate a dynamic table with the number of columns same as that of the number items selected in the listbox. And for each selected item I want to show a seperate chart in the columns...Currently I want the same chart control for every selected item (i.e. a static hard coded chart that i will replace later by dynamic values)....I am using a method that draws a chart control using a sample dataset... I am calling it each time when a new column is created..Also the DrawChart method executes for the first column only and throws an index out of range exception! after the first execution...my code is not working...here

my code...

[Code]....

[Code]....

View 1 Replies

Adding A Virtual Directory To Visual Studio Development Server?

Apr 6, 2010

I'm using the Visual Studio Development Server, with a specific port. Is there a way to add a virtual directory to it?

EDIT:

I'd like to be able to add one or more virtual directories to arbitrary physical directories. For instance: [URL] would map to C:, [URL] etc.

View 6 Replies

Logic For Fixing Relative Urls To Full Urls

Nov 16, 2010

i have a function that pulls URLs from various web resources. needless to say some are full valid URLS and some are relative as per the HTML of the page. below is my asp.net/ c# logic i derived for examining the URL and then generate a full usable URL from whats pulled from the site...

NOTE:
origianlurl is the full url of the first searched page, and relativeUrl is a url found within the searched page (it can be a full www.site.com or a /contactus.html)
private string ResolveRelativePaths(string relativeUrl, string originatingUrl)
{
if (relativeUrl.StartsWith("http") || relativeUrl.StartsWith("www"))
return relativeUrl;
if (relativeUrl.StartsWith("/"))
{
//get main url something.com
[code]...

View 1 Replies

C# - Save The Generated Pdf Directly To The Server Directory Folder Without User Prompt?

Nov 23, 2010

A friend of mine gave me this task so I can learn advance programming a little bit easier. I am currently doing convertion of an html page to pdf using itext sharp and email the pdf as an attachement. My idea is to save the pdf first to the server machine in the folder name ToBeEmailedPDF folder before using it as an email attachment. The thing that bothers me is that this dialog as what you can see in the picture shows up using the code that I have below.

[code]....

View 2 Replies

Web Forms :: Parser Error Message - XML Sitemap Config File Web.sitemap Could Not Be Loaded

May 11, 2010

We are getting this error message when we try to click the link in the menu to go to Report Server:

Source Error:
Line 31: <siteMapNode title="Reports" description="Reports">
Line 32:
Line 33: <siteMapNode url="https://ffxsqldgc01.ffx.co.fairfax.va.us/Reports/Pages/Folder.aspx?ItemPath=%2fDPZ&ViewMode=List" title="View Reports"
description="Click here to view the reports" />
Line 34: </siteMapNode>
Line 35:

I tried to add after the &, as it was suggested on one of the forum but it did not work. Any other ideas.

View 5 Replies

Dangerous To Put Pdf Files With Cryptographically - Generated - 128 - Character File Names In A Public Web Folder?

Mar 7, 2011

I have a site that allow the user to request a secret report in a pdf format. My idea is to put the generated pdf files in a public folder with disabled directory browsing. Each file name consists of 128 characters that are uniquely and cryptographically generated. The legitimate user will be given the link of his/her own report.

View 2 Replies

C# - Adding DataAnnotations To Auto Generated DBML Class?

Feb 17, 2010

i'm worried about doing this since my changes will be overwritten when the dbml file is auto generated again (as they often are).

i'm thinking of doing a partial class and writing out the same properties to annotate them, but worried that it will complain about duplicates, and the reason i can't even experiment brings me to the second part of my questions...

... that, the expandable arrow on my dbml file listing is missing, right clicking and selecting "View Code" just displays an empty partial class as below...

Partial Class FPDataContext
End Class

I'm using VS2010 RC and am just developing an MVC 2.0 app where i want to be able to use the UI Annotations such as [UIHint("RelativeDateTime")]

edit:

here is my VB version edit as an example...

Imports System.ComponentModel.DataAnnotations
<MetadataType(GetType(CommentMetaData))> _
Partial Public Class Comment
End Class
Public Class CommentMetaData
<UIHint("PostedSince")> _
Public Property DateAdded() As DateTime
End Class

View 1 Replies

Adding A Class Attribute On The Image Tag Generated By The Hyperlink Control

Jun 14, 2010

I have a hyper link control and I set the NavigateURL and the ImageURL property at runtime. I also need to set the class of the image tag that it generates but I cannot figure out how I can do that. The solution mentioned here [URL] does not work because the image url is hard coded.

View 2 Replies

VS 2010 - Adding More Options To Droplist Generated From Excel File

Apr 9, 2012

I have a droplist, that I generate from an Excel file.

Code:
cmdExcel.Connection.Open()
dropdown1.DataSource = cmdExcel.ExecuteReader()
dropdown1.DataTextField = "BCName"
dropdown1.DataBind()
cmdExcel.Connection.Close()

I want to add two more options to the droplist:

dropdown1.Items.Add("Select")
dropdown1.Items.Add("All")

But if I do like this they are added after the items from the databind. I want the Select and All as the two first ones and then get the rest from the databind. How do I do that?

View 4 Replies

Adding PostBackTriggers And AsyncPostBackTriggers To UpdatePanel For Dynamically-generated Grandchild Controls?

Jan 20, 2011

I have a page with a ScriptManager, a generic HTML drop-down list (<select>), and an UpdatePanel. The UpdatePanel contains a PlaceHolder (for now). During Page_Load, a number of user controls are added to the PlaceHolder (really, it's several instances of the same user control). The number to add is not known until the page loads, so they do need to be loaded dynamically. The drop-down list is populated with the same number of menu items, and there is javascript on the page also (using jQuery) to show only one of the controls at a time depending on the state of the drop-down list.

Each user control has two buttons that should generate an asynchronous postback, a drop-down list that should generate an asynchronous postback on a change in selected value, and a button that should generate a synchronous postback. If I was not generating the controls dynamically, and if there was only one control, the structure would be something like:

[code]....

Of course, all the controls inside the ContentTemplate would actually be part of each user control.

Adding the triggers on the server side does not seem to work because no ControlID seems to the UpdatePanel find the relevant controls. I can use either the control's ID or the control's UniqueID, and it does not work, and I get an error along the lines of

A control with ID 'ctl00$ContentPlaceHolder1$ctl01$asyncButton1' could not be found for the trigger in UpdatePanel 'myUpdatePanel'.

So, I wonder if I need to register the triggers in the client instead using ASP.NET Ajax. I found this page that basically explains how. However, I do not know how to get the EventName taken into consideration. The examples I have seen so far have merely been adding button clicks, but I don't know how to handle the SelectedIndexChanged event from the DropDownList.

Are there examples out there I have missed? It doesn't , of course, that the method in the link I gave appears to be "unofficial," so I don't see any MSDN documents on the subject.

View 1 Replies







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