Why Does HtmlActionLink Always Prefix The Urls With The "Blog"

Feb 7, 2011

i have defined the following Routes:

routes.MapRoute("Blog",
"Blog/{controller}/{action}",
new { controller = "Test", action = "Index" });
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
);

When i call http://localhost/ all Links are wrong and go to the Blog: @Html.ActionLink("About", "About", "Home") creates the following URL: localhost/Blog/About but it should create localhost/About. Why does HtmlActionLink always prefix the urls with the "Blog"?

View 1 Replies


Similar Messages:

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

Write A Page Where User's Can Write A Blog Post And Publish It To The Blog?

Apr 2, 2010

I want to write a page where user's can write a blog post and publish it to the blog. I've downloaded blog engine .NET and looked at the code and I like the way they do it, but it's completely an overkill of what I need. What I need is only a title, author, date, and the blog post it self. I don't even want users to post comments or anything like that. My approach is to save all those blog post information into an xml and then when a page loads it loops around those xml files to show the blog post.

View 1 Replies

XMLNode Add Attribute Without Prefix

Jan 26, 2011

I have the following method:

Code:

XmlNode AttributeNode = xmlDocument.CreateNode(XmlNodeType.Attribute, fieldName, WILTSNAMESPACE);
AttributeNode.Value = fieldValue;
parentNode.Attributes.SetNamedItem(AttributeNode);
this create (for example):
<Person d2p1:PersonRole="Boss">

How do I add an attribute without the d2p1: prefix:

<Person PersonRole="Boss">

View 5 Replies

MVC :: Route - Add Dynamic Prefix To Url

Feb 3, 2011

I want to add a dynamic prefix to the url for some of the Views in my site, e.g. [URL] but am having difficulty. Out of the box I have [URL] but need to set a prefix dynamically. I created another Route in the Global.asax like so, but is is even needed? If it is how do I call it from my controller?

routes.MapRoute(
"Questions", // Route name
"{dyna}/{controller}/{action}/{id}", // URL with parameters
new {dyna = "dyna", controller = "Quote", action = "Questions", id = UrlParameter.Optional } // Parameter defaults
);

View 12 Replies

SQL Server :: Adding Prefix With Primary Key?

Mar 31, 2011

I've a scenerio where i've to create a primary key with prefix Rad####. For example Rad0001. How to do that.

View 2 Replies

Web Forms :: Multiple Controls Under One Tag Prefix?

Nov 17, 2010

I have a C# application with a folder Controls (has three ascx files in it) in the same namespace. This is a sort of toolkit of reusable controls relating to this application. I currently have to register three different tag prefixes to use the controls but this seems messy. How can I reference all controls with a prefix such as mytoolkit:* where * is the name of the control I wish to use?

View 1 Replies

C# - TryUpdateModel Not Working With Prefix And IncludeProperties

Aug 9, 2010

i have an entity called User with 2 properties called UserName and Role (which is a reference to another entity called Role). I'm trying to update the UserName and RoleID from a form which is posted back. Within my postback action i have the following code:

var user = new User();

TryUpdateModel(user, "User", new string[] { "UserName, Role.RoleID" });

TryUpdateModel(user, new string[] { "User.UserName, User.Role.RoleID" });

However none of these updates the Role.RoleID property. If i try the following:

TryUpdateModel(user, "User", new string[] { "UserName, Role" });

TryUpdateModel(user);

The RoleID is updated but the RoleName property is validated aswell. That's why i'm trying to be more specific on which properties to update but i can't get any of the first examples to work.

View 2 Replies

ADO.NET :: Add A Prefix Value With Existing Value While Updating A Column In Sql?

Feb 10, 2011

how to add a prefix value with existing value while updating a column in sql??

View 4 Replies

SQL Server :: How To Remove Left Prefix

Feb 23, 2011

I Have many entries that have this 'HK' as a kind of prefix. in SQL Server table while i have nothing against HK, the sales person would like this HK removed. the name of this column is categoryname

HK-Dietary
HK-Jan

View 7 Replies

C# - Configure Table Prefix For MySqlMembershipProvider

Oct 5, 2010

I have MySqlMembershipProvider working with Asp.Net MVC. My question is how can I configure the table prefix... so instead of 'my_aspnet_' prefix on the tables, I want this to be either none or defined by me. My web.config:

<?xml version="1.0"?>
<add name="ApplicationServices" connectionString="server=localhost;user id=root;Password=*********;database=sparkSources" providerName="MySql.Data.MySqlClient"/>
<authentication mode="Forms">
<forms loginUrl="~/Account/LogOn" timeout="2880" />
</authentication>
<membership defaultProvider="MySqlMembershipProvider">
<providers>
<clear/>
<add name="MySqlMembershipProvider"
type="MySql.Web.Security.MySQLMembershipProvider,
MySql.Web, Version=6.3.4.0, Culture=neutral,
PublicKeyToken=c5687fc88969c44d"
autogenerateschema="true"
tablePrefix="ss"
connectionStringName="ApplicationServices"
enablePasswordRetrieval="false"
enablePasswordReset="true"
requiresQuestionAndAnswer="false"
requiresUniqueEmail="false"
passwordFormat="Hashed"
maxInvalidPasswordAttempts="5"
minRequiredPasswordLength="6"
minRequiredNonalphanumericCharacters="0"
passwordAttemptWindow="10"
passwordStrengthRegularExpression=""
applicationName="sparkSources"
/>
</providers>
</membership>
<profile>
<providers>
<clear/>
<add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/" />
</providers>
</profile>
<roleManager enabled="false">
<providers>
<clear/>
<add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="ApplicationServices" applicationName="/" />
<add name="AspNetWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider" applicationName="/" />
</providers>
</roleManager>
<pages>
<namespaces>
<add namespace="System.Web.Mvc" />
<add namespace="System.Web.Mvc.Ajax" />
<add namespace="System.Web.Mvc.Html" />
<add namespace="System.Web.Routing" />
</namespaces>
</pages>

View 1 Replies

Split The Word And Get The 4 Letter Prefix In C#?

May 24, 2010

i have a username= LICTowner.

i need to get the prefix from the word LICTowner i.e LICT.

how to split the word and get the 4 letter prefix.

in asp.net using C#

View 6 Replies

Web Forms :: Creating XmlElement With Prefix Namespace?

Feb 5, 2010

I am trying to create a xmlElement from my asp page. The result xml node should look like the following:

<str:nam ft:qsType="qsString">NAME_I</str:nam>

I am having some problem putting the "str" prefix before the tag-name. I tried doing:

[Code]....

I get the result as:

<str:nam qsType="qsString" xmlns:str="xmlns:str="urn:instec-corp.com:qsdatamodel:autostructs:v1""> </str:nam>

I am not sure how to get the desired result which should be:

<str:nam ft:qsType="qsString">NAME_I</str:nam>

View 3 Replies

Web Forms :: Listbox Item With A Position Prefix?

Nov 7, 2010

I am trying to find the most efficient way to prefix listbox item text with their current index.I have two listboxes on a page, the first holds a list of states, the second holds the selection of states. When the user selects a state into the destination listbox, the state should be prefixed with the current index position. The destination box is sorted, and also has buttons to change the item positionsIs there a way to get the index of the item after insertion, instead of looping through the entire collection to add the index?

View 2 Replies

Fixing MaskedEditExtender To Prefix Date With Correct Century?

Jun 22, 2010

I am using a MaskedEditExtender on a textbox to verify a date. MaskType="Date" Mask="99/99/9999". Users of the system are used to typing just the last two digits of the year (i.e. 22/06/10) so I am trying to make this possible.

I have tried using Century="2000" but this option does not seem to function at all (still results in 22/06/0010).

A response in another forum suggests modifying the MaskedEditBehavior.js file to fix this behaviour - see here.

My question is, how should I go about modifying the MaskedEditBehavior.js file (as suggested in the link above), and how do I ensure that this modification is distributed with my application? I cannot even find this file to modify.

View 1 Replies

Web Forms :: Create A Function For Prefix Generation On Each Insert Row ?

Jan 19, 2011

How to Create a function for Prefix generation on each insert row ?I have a table with ID as primary and is identity and increment by 1. and POID another column.Now I need to generate a function like this.In POID Column on each insert I need to set prefix like this

PI000001
PI000002
PI000003
PI000004
PI000005
PI000006
PI000007
PI000008
PI000010
PI000011

and so on ......like this and so on ....

View 5 Replies

MVC Action Parameters With Binded Prefix Not Compatible With Url.Route In Global.asax?

Nov 17, 2010

I have a details page containing a form field named UserId. On the same page i have another search form with a field also named UserId.

I am using Html.LabelFor(vm > vm.UserId) and Html.TextBoxFor(sm > sm.UserId) on the two different view models, vm being the view model and sm being the search model. (Yes, the UserId property on the two models has identical names - because they are the same domain property.

When i navigate to the page, the populated UserId on the vm is inserted into BOTH form fields named UserId by MVC. Even the sm.UserId are empty.

That is my initial problem. There are a few ways ti avoid that. My solution was to use the Prefix flag for the sm.

[code]...

My problem is that MVC can't map the Search.UserId (because of the .) to fit the UserId (prefixed with Search) in the action shown above.

So it seems like MVC has a prefix-feature, that are actually nok fully supported through the Route-handler.

Ofcourse i could rename the Search.UserId to Search_UserId, but then the name dosent match the name MVC expects in the recieving action above. (expects Search.UserId) Renaming The UserId property of the search model would fix the issue, but since it is the same value in the domain, this seems like a workaround.

View 1 Replies

URL - How To Create A Blog In MVC

Nov 23, 2010

I have created a blog application with ASP.NET MVC and MSSQL. I must say, i really enjoyed the process of creating an application with ASP.NET MVC. Clean URLS(with URL routing), No view States and so on.

BUT i was wondering how would this would have been done if i choose web-form style coding? will the aspx would be created in the fly as i create a article.(take this url for ex: [URL]) though the URL is not clean but still makes sense. if yes then what about its corresponding cs file? if no how is the URL so clean?

View 4 Replies

Create A Blog Using 3.5?

Feb 1, 2010

Is there a way to create a blog using asp.net 3.5 in Microsoft Visual Web developer 2008 or 2010? Also, how do I make commenting, replying and posting only available to the user of my website?

View 9 Replies

How To Read A Blog

Jan 12, 2010

I want to get content of my blog in my web site how can i do this.I have used dataset and its method XMlread but it doesn't word my blog's url ishttp://hari-ghan.blogspot.com

View 3 Replies

C# - Where Should Create Development Blog

Aug 13, 2010

I'm looking for a blogging site to host my ASP.Net/C# (and possibly other web related programming) technical blog - where should I create such blog?

BTW, it's a shame that SO does not offer blogging services.

Note: I would create it on [URL], but it requires to be a highly active member on their site.

View 3 Replies

Web Forms :: Want To Make Dot Net Blog?

Apr 20, 2010

Guys I want to make a blog like http://www.hanselman.com/blog

is there is any solution like wordpress in dot net ? or we have to write our own code in it

what hanselman is using

View 1 Replies

Is It Possible To Integrate A WordPress Blog

Jan 27, 2010

Is it possible to integrate a Wordpress blog with ASP.NET If yes, then how?

View 2 Replies

Most Mature .NET MVC Blog Engine?

Mar 20, 2010

What's the best ASP.NET MVC based blog engine out there which is ready to deploy? I am guessing there are no MVC blog engines which are comparable with WebForms based blog engines like dasBlog, BlogEngine and subText? I think Oxite is a dead end and Orchid is more like a CMS.Looking for an engine which can do these:

RSS feeds support
anti comment spam functionality like support for Akismet
comment post approval support
Some kind of theming if possible

View 3 Replies

C# - Blog Engine 2.0 Error?

Feb 13, 2011

I AM getting an error while opening blogengine.net 2.0 in visual studio 2010 designer view.It is showing the master page error.But while executing the page it is loading correctly.

View 2 Replies







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