MVC :: Live Pages Don't Change After Changing "cshtml" ?

Jan 27, 2011

Now i am learning mvc3 razor. I create a razor mvc project and set a vitural webapp in IIS7 for it , as "localhost/mvc3/". When i do some changes on .cshtml trying to check effects I just find that corresponding page doesn't change even refresh browser. I am not quit familar with the rule & principle on this.

BTW : this post page seems have severe problem because I cannot use the message editor in Chrome / IE9beta : they just leave a stubborn blank area for me.

View 5 Replies


Similar Messages:

Can Server .html Files Using Razor As If They Were .cshtml Files Without Changing The Extension Of All My Pages

Feb 24, 2011

I manage a large asp.net site which has previously been converted from static html site to asp.net. For several reasons (mainly SEO) we decided not to rename all the files to .aspx back when we originally converted the site. This was very easy to do by simply adding the buildProvider and httpHandler to the web.config.

<buildProviders>
<add extension=".html" type="System.Web.Compilation.PageBuildProvider"/>
</buildProviders>
<httpHandlers>
<add path="*.html" verb="*" type="System.Web.UI.PageHandlerFactory"/>
</httpHandlers>

Now I am upgrading the site to use Asp.net WebPages with Razor cshtml files. I can rename all the files if necessary, and use url rewriting to make the urls stay the same, however it would be much easier if I could just configure the web.config to tell it to parse .html files as if they were .cshtml. I have searched around quite a bit, and could not find anything equivalent to the PageHandlerFactory for razor pages. It appears as though it is just an internal mechanism in the .net 4.0 ISAPI handler.

The site is currently running on Windows 2003 server and IIS 6. We will be upgrading to 2008/IIS 7.5 in the near future, but I'd prefer not to wait for that. Is there any way to get the .html files to be parsed by razor as if they were .cshtml files?

View 2 Replies

Using Controls In WebMatrix Cshtml Pages?

Mar 11, 2011

I am building a site with WebMatrix using the razor syntax in .cshtml files. However I'm stumped as to how I can use the normal set of asp.net controls that are found in the toolbox in Visual Studio - eg: calendar, panel, radio button list etc... Is it possible to use these or can you only use Helpers with razor?

View 2 Replies

MVC :: _ViewStart.cshtml And Conditional Layout Pages?

Nov 30, 2010

I would like to use the _ViewStart page to set the master page (layout) used by the views. I have only two different layouts. One for the homepage and one for the other pages (but that may change)I was hoping to add a dynamic property to the ViewModel object in the home page's controller method and then check for it. Something like this_ViewStart =

[Code]....

And in the HomeController Index() add this

ViewModel.IsHomePage = true;

View 2 Replies

WebMatrix :: IIS Express Refuses To Serve .cshtml Pages?

Feb 24, 2011

I have been struggling to get WebMatrix to serve any cshtml files. I performed a fresh install of WebMatrix, then started a tutorial which involves creating one small cshtml file. Whenever I try to run the site, I get the following error:

This type of page is not served.

Description: The type of page you have requested is not served because it has been explicitly forbidden. The extension '.cshtml' may be incorrect. review the URL below and make sure that it is spelled correctly.

Requested URL: /Home.cshtml

I tried reinstalling to no avail.

I am running Windows 7 Pro, with IIS 7 installed. (IIS Express is supposed to be able to run side-by-side no problemo)

View 8 Replies

SQL Server :: Changing From Ntext To Varchar(max) On Important Live Data?

Mar 23, 2011

So I have a ntext column in a table with a combination of large random data (hence why ntext in the first place) and sometimes contains a uniqueidentifier.

I need to find and delete rows based on the uniqueidentifier.

I can't do the comparison with it being ntext, but I changed it to varchar(max) in my dev enviornment and it let me do it without any warnings and I can now do my comparison like I want to, so all is good.

I just want to make sure I'm not changing any of my large random data by changing the data type.

View 4 Replies

WebMatrix :: Webmatrix Refuses To Run Cshtml Pages?

Feb 15, 2011

There I was, happily coding webpages, when suddenly it wouldn't run them anymore. Now when I click run I get an error message that looks like this: Server Error in '/' Application.This type of page is not served. Description:The type of page you have requested is not served because it has been explicitly forbidden. The extension '.cshtml' may be incorrect. Please review the URL below and make sure that it is spelled correctly.

Requested URL: /quiz/intro.cshtml
Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.1

View 3 Replies

Web Forms :: Adding New Pages Without Compiling In Live Site ?

Aug 26, 2010

Recently I have been given assignment to allow admin to add new pages dynamically without need to rebuilding and deploying web site/ project. These pages will be having simple text.

View 4 Replies

Adding Pages In Live Site Dynamically Without Redeploying Or Recompiling ?

Aug 26, 2010

Is there some way to add .aspx pages in live asp.net site without need to recompile or redeploy ?

View 2 Replies

Web Forms :selected Change Does Not Fire On Live?

Sep 8, 2010

It works on local but on Live does not. SelectedIndexChanged does not fireOn local machine its totally fine.selected change does not fire on Livebut if u click a bit close to checkbox it works on Live as well.

[code]...

View 5 Replies

C# Dynamically Changing Master Pages

Sep 11, 2010

You fetch the user's IP address and based on his/her country you redirect the user to a specific webpage. Now, how do you change the master page dynamically? This is how I am redirecting the user :-

Geolocation Error with IP Address 127.0.0.1

It's not like the user clicks some button or something and you then change the master page. I want it changed when the user is redirected, so how exactly do I go about it?

public partial class testClass: System.Web.UI.MasterPage
{
protected void Page_Load(object sender, EventArgs e)
{
if (redirected to site1)
{
Use this master page1
}
else
if (redirected to site2)
{
Use this master page2
}
}
}

So how do I check what SITE the user has been redirected to? Also HOW to apply the specific master page now that the user has been redirected?

I just need an idea how to go about it.

[EDIT] please check the code block below. How do I fetch the URL that the user has been redirected to? I actually need just the "iso3166TwoLetterCode" variable's value (see the link to my earlier question, please) and based on that will be changing the master page. I can't figure out how to fetch that value or even use that class (that's got this variable) in my testClass.

protected void Page_PreInit(object sender, EventArgs e)
{
if (user Has been redirected to www.site.in )
{
this.MasterPageFile = "master1.master";
}
if (user Has been redirected to www.site.fr )
{
this.MasterPageFile = "master2.master";
}
}

View 2 Replies

Visual Studio :: Sync Pages With The Live Site From Somewhere In Visual Web Developer?

Oct 22, 2010

More familar with DreamWeaver. Can i sync pages with the live site from somewhere in Visual Web Developer? Or do I need to use a separate FTP tool.

View 3 Replies

C# - Dynamically Changing Master Pages / Getting Thread?

Sep 13, 2010

I created this master page file and in its Page_PreInit added the code to change master page at run time after detecing a visitor's country:-

Now, while researching I came across this thread that says "Setting the master page in Page_PreInit event is against the design and spirit of MVC..what is this supposed to mean ???

If not this way, how else am I supposed to change master pages at run time???

View 1 Replies

Changing Urls Form With Master Pages

Jan 13, 2010

We've had a requirement from a client to move a site that is running on it's own domain to a subfolder of another app.

I've acheived this using ISAPI rewrite proxying.

However, there is one form that does a post back in the site. The generated url for the action from ASP.NET is "/sign-up.aspx?". This sends the postback to the root of the site.

I want to change this to "sign-up.aspx?" (no leading slash). This would be fine if I wasn't using Master pages as I could get a reference to the form and change it's action (this is .NET 3.5 SP1). I've tried to use the following code in my control to get a reference to the form but it doesn't seem to do anything. It finds the form but the action is not set to the value.

HtmlForm form = ControlLocator.FindControl<HtmlForm>(Page.Master.Master, "form1");
form.Action = "sign-up.aspx?";

This is in Page_Load and ControlLocator.FindControl is a port of this http://www.west-wind.com/Weblog/posts/5127.aspx

View 3 Replies

C# - Build A Live Chat Connected With Windows Live Messenger?

Feb 26, 2011

Live Chat is a very famous tool on websites, and the operators use a special web/windows interface to talk to the clients.What I want to implement is to specify some email accounts, and when the client click's the live chat and starts typing, his/her instant messages are delivered to the available email account. My operators can talk back to them as if they are on their friends list.I don't need to require any login or registration for clients to use this Live Chat.So are there any ideas about how to implement such a thing? Are there any good third-party-modules that already do that?

View 4 Replies

HttpHandlers / Modules :: Generic Handler / Prevent Data From Being Written To Live Table Via The Live.aspx Page?

Jun 28, 2010

I am using a generic handler (indicator.ashx) to create a graphic that is overlayed from information from a table (called LIVE) from our SQL database. This is working very well and I am very happy with the results.

However I am having an undesirable issue where the query string that is used for this is also being accessed by another page (called ReceiveLive.aspx) which is populating our LIVE table with data when we don't want this. I have been able to track this issue down to our generic handler that seems to populate this table with data whenever the handler is accessed.

The query string that is used to access our graphic through our generic handler is
http://mydomain.com/indicator.ashx?ID=ABC001.

Our other page that writes data to our LIVE database used the query string
http://mydomain.com/live.aspx?ID=ABC001 which is normally only accessed by a small piece of software that sits on the users PC and sends the data when necessary.

My question is this: How do I prevent data from being written to our LIVE table via the Live.aspx page everytime a query string is processed by my indicator.ashx is accessed?

View 10 Replies

Dynamic Page Changing / Redirect To Others Pages In Web Application?

May 18, 2010

I have web servie and web application ..Request hit from widows application to web service .if any request got means i need to redirect to some others pages in web application ,how can we do ..web application always open in server ..

View 1 Replies

Web Forms :: Changing User Control Properties In Aspx Pages?

Feb 25, 2011

I have a simple user control(.ascx) with a asp label inside of it. Using the codebehind(C#) from a aspx page, how can I change the text of that label? I have tried using public classes in my user control and a few other things that I could think of off the top of my head. Can somebody give me a quick example of how this would be done?

View 4 Replies

Security :: Windows Live Delegate Authentication And Emails / Access Emails (New, Read, Unread Etc) from Live Account?

Mar 21, 2011

I am able to get a token with Windows Live Delegate Authentication samples provided by Microsoft.

Now I want to access emails (New, Read, Unread etc) from live account. How can I achieve it with the help of Windows Live Delegate Authentication? Are there any examples for the same?

The Samples given by Microsoft are not related to emails.

View 2 Replies

Web Forms :: Changing A Textbox Text Doesn't Change?

Dec 22, 2010

I am using a dataview to populate existing values on page_load:

[Code]....

The problem is, if i change that text, and click a button and check what the value of the text box is, it is still the original database populated value, not what i changed it to.

View 3 Replies

Web Forms :: Changing Textbox Color Base On Time Change?

Jan 31, 2010

i have 5 textbox in the webpage how to change the color to green and the word to open from 8 am gmt to 5pm gmt else the textbox will be red and the word will be closed

TextBox18.Text ( open 10:00 pm and close 7:00 am )(GMT)

TextBox19.Text ( open midnight and close 10:00 am )(GMT)

TextBox20.Text ( open 8:00 am and close 5:00 pm)(GMT)

TextBox21.Text ( open 7:00 am and close 4:00 pm )(GMT)

TextBox22.Text ( open 1:00 pm and close 11:00 pm )(GMT)

this the code that i useed

in page_load

[Code]....

it is not working right

View 8 Replies

Web Forms :: Changing Mouse Pointer To Hourglass And Change It Back To Default

Feb 3, 2010

I like to change the mouse as hourglass when the user click on the "search" button until the data is loaded in a datagrid. Then change the cursor back to default. I found many posts to change the cursor to hourglass but found nothing to change it back again to default after firing the button code. So I tried the following in the page_load() event,

btnFind.Attributes.Add("onclick",
"document.body.style.cursor = 'wait';");
dgResults.Attributes.Add("OnDataBinding",
"document.body.style.cursor = default;");

It works fine, the mouse changes to hourglass when i click the button and then once the datagrid is loaded it is changing it back to pointer but when i move the cursor it is again changing back to hourglass. it looks like it is working but not.

View 5 Replies

Web Forms :: Changing Checkbox Change State Does Not Fire Check_changed Event?

May 9, 2010

I in page load i change the checkstate of checkbox false to true or true to false, in turn which i expect to fire the check_change state but seems not firing the event

protected void Page_Load(object sender, EventArgs e)
{
chkDegisim.Checked = true;
chkDegisim.Checked = false;
}
protected void chkDegisim_CheckedChanged(object sender, EventArgs e)
{
int a = 1;
}
when i put a breakpoint to chkDegisim_CheckedChanged, it does not fall into the event chkDegisim_CheckedChanged.
chkDegisim's autopostback is true and i have declered chkDegisim_CheckedChanged event in aspx.

why it does not fire chkDegisim_CheckedChanged event?

View 5 Replies

Change The Language For Pages?

Jul 14, 2010

I'm able to change the language for my pages, however if I select french and I am on a current page and if I try to load another page, that page won't be in french. How can I set it so it is consistent throught?

Toggle Button in master page:
If Page.Culture = "English (United States)" Then
Response.Redirect(Request.Url.AbsolutePath + "?lang=fr-CA")
ElseIf Page.Culture = "French (Canada)" Then
Response.Redirect(Request.Url.AbsolutePath + "?lang=en-US")
End If

and in every page:

Protected Overrides Sub InitializeCulture()
Dim lang As String = String.Empty
lang = Request.QueryString("lang")
If lang IsNot Nothing Then
Session("culture") = lang

[Code]...

View 1 Replies

MVC :: Use Another _Layout.cshtml?

Mar 19, 2011

I have a MVC3 project using Area in it.the struct of web site si ' top - middle - bottom'the middle layer is divided into left and right partat the left part , I want to write codes as public to use, but '_ViewStart.cshtml' in the Area it's point to the '_Layout.cshtml' file at '~/Views/Shared/' my problem is how to use another cshml file as '_Layout.cshtml'

View 4 Replies







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