I just setup an out of the box "W2K8 R2 Web" server and installed IIS 7 out of the box. Then I installed the .NET4 framework and ran "aspnet_regiis -i" command.
I created a site using .NET 4.0 Integrated app pool.
I created an MVC application using the default MVC project template, without modifying I compiled the project and deploy the files using (Publish) to the virtual directory.
I can pull the site up, but the styles are missing from the page and for some reason it routing to the /Account/LogOn?ReturnUrl=/
I have a project which uses VS 2005 and .NET framework 2.0. I saved my project and did not change any codes. Before this Monday, my project worked as normal, after I enter user name and password on log on page, it would go to start page. (The log on page is called from another project that is located on my local machine.) Cause firewall issues happend on the Monday, I reinstalled .NET framework 2.0 to get debugging worked.
Now, my project can run like usual, but after I log on, the web page will direct to start page and redirect to log on page dymatically. I am sure the codes behind start page will never redirect browser to log on page and I didn't not change any codes. The redirect code in Global.aspx is : Response.Redirect [URL]
This causes even the authenticated users but unauthorized resource requested users to redirect to logon page. but i need only to redirect this page if user try to access unauthorized page and not already authenticated(logged on) and redirect to custom page.
Is there easy way to do this without writing custom action filter?
Ok so I've created a login page that accesses my Active Directory and challenges against it. What I would like, is if a user is logged onto the computer within the intranet with Active Directory Credentials for them to bypass the login to the web page.
However if they are outside of the building on a random computer, they should be presented with a login box just like they are now.
I've got an MVC 2 app that works fine when launching from VS 2010. However, when I deploy (using File System on the server in the same box) and attempt to run I get the error shown below. The wierd thing is that the Physical path shows: C:inetpubwwwrootWorksheetsSiteWorksheetsAccountLogOn which leaves out the "View" folder in the path.
I've encountered a problem when I put a treeview in a page which is using master page. The treeview style doesn't apply.For example, I set the nodes with different colors in different levels. But the treeview nodes are still displayed in the default color(bule).
The treeview code is :
[Code]....
If I use these code in a page which doesn't use a master page. The nodes are shown in colors.
So I have an .aspx page loading up and populating drop downs based on a lookup table in the database. What we want is for the user to be able to configure which of these values comes defaulted by specifying that value in a drop down somewhere else in the app. Now, it's easy to default the "first" value, or something like that, but we want this to act differently. Is there a JavaScript function that can run immediately after onLoad (so the drop downs are populated already), that can go through the drop down and make one of those default so it looks like the page is loading with that set as default and people don't realize the workaround? (weird masking, etc.) I'm not TOO experienced with JavaScript so something like this may already exist. Here is an example of how we add the dropdown control to the page, in case you guys even need that.
With CType(.AddControl(New Controls.ComboBox("CodeId", "../../../../CodeId", "Code")), Controls.ComboBox) .ForceSelection = True .ValueField = "LookupID" .DisplayField = "LookupDesc" .Validate.AllowBlank = False .ForceSelection = True .ReadOnly = EditControl.IsFieldReadOnly(10580) .BindData(Model.Codes) End With
This is annoying, because I have to apply this style to every single thumbnail image individually, when there could be any number of them on the screen at any given time. All of the thumbnails are inside a single <div> that groups them together, and I'd like to apply a single style to the <div> that will push the attributes I need down to all of the the <img> elements nested inside, regardless how many thumbnails there are.
I am trying to run a website on iis7, it was working fine untill i tryed to install isapi rewrit on iis7. when i go to localhost i get the 404 message and when i type localhost/Default.aspx i get the default page but the css is not applyed to the page. i tryed to uninstall /install iis but the settings remain the same. how can i install iis with default settings.
explain what the Dynamic Data team was thinking when they designed grid sorting in Dynamic Data scaffolded tables? Sorting defaults to using all columns, in the order the appear in the model, often arbitrary very counter-productive.We've just had a run in with the 'out-of-the-box' sorting, and solved it with a simple SortExpression attribute on MetaTables. Another, even simpler solution would have been for them to avoid any sorting, allowing the DB to provide a default order based on clustered index.
What is the easiest way to reset all the controls on a web form. Can I set "veiw state" to false for all of the controls with one command, do a response-redirect to its own page, and set view state back to true. What is the easiest way to do it.
CarType Id - PK Name CarDetail Id - PK TypeId - FK to CarType
I have this simple example here and I want to insert a new CarDetail into the database but for some reason I cannot get the EntityKey to work in EF4 and Framework4 beta 2.
If i declare the following
car_detail.CarTypeReference.EntityKey = new System.Data.EntityKey("MyDB.CarType", "Id", 1)
Each time i try to call SaveChanges, it throws a INSERT constraint error saying that there is a conflict between CarType and CarDetail with the FK. It just seems like the hard coded 1 for CarType is NOT being passed through but instead the default value of 0. What is going on?
If i call car_detail.TypeId = 1 then it works fine with the INSERT.
I have a very vexxing issue. After installing a third-party application and add-in for VSTS 2008, it has corrupted my menus/buttons by duplicating/cascading these throughout studio (i.e. Multiple sets of each menu - File, Edit, View, etc, each of which has multiple submenu entry sets). I have tried to use Add-In Manager to uninstall it and removing the application (which added the Add-in to VSTS). I tried Tools->Customize and resetting the MenuBar and ContextMenu options as well. I tried running each of the following (closing and then reopening VSTS after each) from the command prompt, which completed but did not fix things.
My question then, does anyone know a way to reset the menus/toolbars for VSTS 2008 to their defaults or correct this some other way? I know I can unistalll both products and resolve this but I *really* want to be able to use the third party app (Red Gate's SQL Prompt).
I have a couple of fields on a form that will be populated with default values. I would like to put a button that will allow me to reset those fields to their default values if they have been modified. However I would like to avoid the postback so that I don't have data being sent to the database. Is it possible to add a javascript hook such that when that button is pressed I can pull the default values and populate those fields in javascript?
I have a text box which has a Ajax calendar extender attached. You click on the text box, the calendar pops up, you select a date and that gets displayed in the text box. That all good but the date is displayed in mm/dd/yyyy format. Can this be changed?
I have an ajax toolkit tabcontainer that used to work ok. It has three tabPanels and I can work correctly with the content inside them.
Now I'm trying to add some new tabPanels but I face a problem.
The first time the page is loaded I see all the new tabs. If I make any postback due to any control interaction, the new panels are still visible, but when I move to another page and go back to the page with the tabContainer, I only see my three original tabs.
I have to close the web server (the one coming with visual studio) to be able to see again all my tab panels
I've added a new tabContainer and is the same. The first time I load the page I see everything, but the following times I only see my original three tabPanels inside my first tabContainer (the new tabContainer is not seen at all).
After the user clicks on such link page title goes missing. It just disappears from title tag inside head tag. Sharepoint still has this title in metadata, and after refreshing whole page title is back again. I have a feeling that this javascript function is not working well or settings inside are not good. Also it looks like this is generated by sharepoint.
i am using a master page in my application. i added a content page by right clicking the content place holder in the master page. I get an issue "could not load type" but when i manully changed the masterpagefile attribute it worked fine. But in the content page all the style in my master page is lost,
I had created a master page, which uses a style element in the header section. It seems that when I create a style element in the content page the style from the master is disgarded.So my question is, how can i have a css style specific to the master page carried over into content pages and how can I have content page specific css style at the same time?
I can edit the CSS style live - makes changes to the dom rendering as I turn on or off or changes values in the style.This is incredible - I cannot believe how powerful this is.What else am I missing with this Firebug tool??
A client of mine developed a base page for their site from System.Web.UI.Page. Unfotunately in the OnInit override they forgot to call base.OnInit().Every page in the web site inherits from this base page class. So this requires them to test their complete site again to release the fix. This is a time consuming process to do a full regression test. Looking for insight into how urgent they should be to release this obvious fix. My opinion is this is a serious issue.Web search didn't really lead me to actually what goes wrong in the base Page class when this is done. I realize default event delegate won't get initialized.I know it is bad, but how bad?Looking into insight of what issues it can cause? How will this cause havoc with the ASP.NET web controls?Will controls down rev to emitting HTML and/or javascript for older browsers by default?