After Opening An Existing Proyect In Visual Studio 2010, Web Form In Design View Doens't Work

Apr 14, 2010

After opening an existing proyect in visual studio 2010, the web form in design view doens't work. All server control puts a gray box with the following message : Error Creating Control - imgTransportistaSession state can only be used when enableSessionState is set to true, either in a configuration file or in the Page directive. Please also make sure that System.Web.SessionStateModule or a custom session state module is included in the <configuration><system.web><httpModules> section in the application configuration.

View 4 Replies


Similar Messages:

Visual Studio :: Split View And Design View Doesn't Work?

Mar 21, 2010

Split view and design view doesn't work.I installed and uninstalled Office 2003 and 2007 once but there's no office in my computer now.-I have Microsoft Studio Web Authoring Component installed.(12.0.4518.1066)(Uninstalled and installed it twice)-My computer-properties-Advenced system settings-environment variables-system variables-path is;

[code]...
What is the problem,how can i fix it? I tried everything in other posts.

View 5 Replies

Visual Studio :: Unable To Edit Design View In VWD Express 2010?

May 4, 2010

I upgraded to VWD Express 2010 and cannot edit text in the design view only the source view. Clicking on the design view takes to the code behind page.

If I create a test page without masterpages I can work in design view.

View 3 Replies

AJAX :: Drag-and-drop, Toolkit Controls Onto A Visual Studio 2010 Design Form?

Mar 13, 2011

I installed the AJAX Toolkit (for .NET4) onto a new Toolbox tab in Visual Studio 2010. However, when I try to drag any of these controls onto my Web form in design mode, they won't stick. My mouse pointer changes to 'disabled' (a circle with a diagonal line thru the middle) as soon as it hovers anywhere over my target form. Is there some additional action I need to take to make VS "recognize" these AJAX Toolkit controls?

View 8 Replies

Visual Studio :: Opening Visual Studio 2008 Project In Visual Studio 2010?

May 21, 2010

Anyone know if I can maintain a VS 2008 (.net 3.5) project by using the VS 2010 IDE ?

View 1 Replies

Visual Studio :: Switching To Design View - Unable To See Design View?

Jan 5, 2010

in my project the design view is not viewed, but the project is working well and good .. the only issue is i cant see my design view ..

error stated is ""Cannot switch views: Validation (Internet Explorer 6): Element 'Style' cannot be nested within element 'td'.""

View 2 Replies

Visual Studio :: Design View Is Not Able To Pull In The Application For Design?

Feb 23, 2010

can't connect to sql 2005 express sp1 and vs is also sp1. 2) Which my guess is because of the database connection not being able... design view is not able to pull in the application for design, it's as if there is no theme and css just white background and black print.

View 1 Replies

Visual Studio - What Is Best Option In Visual Studio 2010 To Sync Project Files Between Home & Work Computers

Feb 14, 2011

Im working on a website project with Visual Studio 2010 from 2 different computers (home & work).
In Dreamweaver Im used to FTP to upload/download files to/from a webserver to syncronice my files on the current computer Im working on.What is best option in Visual Studio 2010 to sync project files between home & work computers? I have seen there is a built in FTP, but seems only it can upload files, limited functionality?

View 1 Replies

Visual Studio :: Form Not Opening - Hides Up Everything

Mar 31, 2010

I have a project in VS2008.Net3.5 with a Module1, form1 and form2.

[CODE]

Imports Microsoft.VisualBasic
Module Module1
Public frm1 As form1
Public frm2 As form2
Sub Main()
frm1 = New form1
frm2 = New form2
Application.run(frm1)
End Sub
'A menu sub
Private Sub menuGotoSpecification_Click(ByVal sender As Object, ByVal e As System.EventArgs) _
Handles menuGotoSpecification.Click
frm2.Show()
End Sub
End Module
Public Class form1
Private Overrides Sub Show()
LoadData()
MyBase.Show()
End Sub
End Class
Public Class form2
Private Overrides Sub Show()
LoadData()
MyBase.Show()
End Sub
Private Sub btnDone_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnDone.Click
frm1.show()
frm1.refresh()
Me.Hide()
End Sub
End Class[/CODE]

Question:

At the beginning I am opening form1 from sub Main(). Now from the menu I am openning form2. In form2 I am clicking Done button to hide form2 and go back to form1. It works fine in the 1st trial. Keeping form1 open for the 2nd time, I opened form2 from the menu. Now when I Click the Done button 2nd time it just hides up everything. Form1 does not show UP. It just exits the whole application. But in my btnDone event, I have frm1.show().

View 2 Replies

Visual Studio :: Items That Select In Design View Are Not Being Highlighted In Source View?

Sep 30, 2010

I'm using Visual Studio 2008, and when I select/highlight something in design view and switch to source view it does not highlight and scroll to the selected item. This makes it really hard to change stuff in source view, and it's very inconvenient at worst

View 2 Replies

Visual Studio 2010 - Convert An Existing Website To HTML 5?

Mar 10, 2011

I have a website which created first by Visual Studio 2005, then I convert in to Visual Studio 2008 and currently using Visual Studio 2008. After Visual Studio 2010 Service Pack 1, HTML 5 and CSS 3 seem to be available. I want to convert my website to a VS 2010 website which uses HTML5.

How can this be done?

Is it possible to convert it to an ASP.NET Web Application while I'm porting it from VS2008 to Visual Studio 2010 ?

I know how to convert a website to web application in Visual Studio 2008 but I haven't used Visual Studio 2010 and have no idea about the differences.

View 3 Replies

Visual Studio Design Mode Don't Work - How To Repair It

Jul 7, 2010

Visual Studio ( VSTS 2008 ) design mode work good for long time and from about 2 weeks ago it's suddenly stop view any thing in design mode i tried a lot with trying in another projects even in a simple web page but no way it's doesn't view any thing in design mode ... I think to reinstall VS 2008 again but I don't know if is there any outher solution for that ?

View 1 Replies

Visual Studio :: How To Get The Design View

Jun 5, 2010

I want to see the design view while I am designing a site in ASP.NET using visual studio 2010 Ultimate, but I wondered there is no such option as design as there were in VS 2005 or VS 2008.

[URL] normally in the attached red portion below supposed to contain a option to switch to design view. But there is nothing ..

View 8 Replies

C# - How To Find The Right Parameters For An Event Without Using Design Mode In Visual Studio 2010

Dec 27, 2010

Is there a way to know what parameters are needed by an event in Visual Studio 2010?Let's say I have a DropDownList control and I want to bind a method to the "OnSelectedIndexChanged", I would do something like thisn the ASPX File:

<asp:DropDownList ID="lstMyList" runat="server" OnSelectedIndexChanged="lstMyList_SelectedIndexChanged"></asp:DropDownList>
protected void lstMyList_SelectedIndexChanged(object sender, EventArgs e)
{
...
}

View 2 Replies

Visual Studio :: See The Razor Code In A Design View?

Feb 5, 2011

I have a Razor coded view with extension .cshtml. I would like to see it in a design view, so I could put some controls from a tool box.

I am using Visual Studio Express.

View 1 Replies

Visual Studio :: Can't See Bottom Of Page In Design View

Apr 1, 2011

When I'm in Design View I can't scroll down to the bottom of some of my pages. I've scrolled down as far as I can and the bottom is cut off. This doesn't happen on all the pages. I tried increasing the height for the ContentPlaceHolder.

View 1 Replies

Visual Studio :: Font Size In Design View?

Feb 11, 2010

I am using VWD 2008 Express and the fonts are really small (actually smaller than that and unreadable) in the Design view. I cannot find any way to make them larger.

View 4 Replies

Visual Studio :: Hide ObjectDataSource In Design View?

Sep 18, 2010

when i'm in design view how can i hide ObjectDataSource buttons

its difficult to see the design and how to rearrange it

View 2 Replies

Web Forms :: Split View In The Visual Studio IDE And Design Is Blank

Mar 5, 2010

In the Source view has code. as I was coding and refreshed the split view (.ascx) it when blank. The so I when to the design view its blank too. The aspx page I can see the control.

View 3 Replies

Visual Studio :: Access Control In Design Time View

Mar 18, 2011

I am creating custom control with tabs and also giving design time support for that control. In design time I cant accessing the child controls and also tabs. I want to change the tabs at the desing time.

View 1 Replies

Visual Studio - Accessing Smart Tags Without Design View

Jan 13, 2011

I mainly do C# ASP.NET projects in VS2010. Once you've put masterpages and other things in place, I find the design view pretty much goes grey and elements can't be selected. This isn't so bad except that sometimes you need to access the little 'smart tags' at the top right of controls to do things.

In particular I'm trying to do this with some telerik controls, though the issue isn't confined to them.

Anyone have a handy tip to access this functionality (or miraculously make design view work!) ?

PS. I read in a few places that Shift-Alt-F10 may help. I tried putting my cursor in the control's tag and using it, no luck. Also I clicked the little rectangle below design view to select the control and tried it again- no luck.

View 1 Replies

Visual Studio :: How To Display Hidden Information In Design View

Mar 16, 2010

I tried to follow the instructions in this link to get display the hidden elements but I don't see this option in my VS2008 Professional Edition

can any one try this most of the options is not exist in my VS2008 ?

[URL]

View 3 Replies

Visual Studio :: Control ASP Table Content Through The Design View?

Feb 4, 2011

i created an asp Table in the markup view and insert rows and cells with controls in them.

when i switch to the desing View, i can only choose the whole table,

how can i focus on the controls inside the table rows in the design view (i want to see their properties)?

View 1 Replies

Visual Studio :: Unable To Move Around The Controls In Design View

May 15, 2010

In VS 2005 I could change the layout appropriately, to move controls in a web form in design mode, to a place where I intend to. But in VS 2008 , I don't see such an option. My controls are stuck in places of their own and I am unable to move them to the intended locations. Googling suggested to use Tools -> option -> HTMLDesigner -> CSS. But not sure that is the correct route.

View 1 Replies

Design View Freezes In Visual Studio 2008 Web Application?

Aug 26, 2010

i have visual studio 2008 and ms office 2007..when i try to develop a web application in vs 2008, i didnt able to open the design view of the web page.. i can only able to see the source view..came to know by googling as, there is some compatibility issues between vs 2008 and ms office 2007 in web authoring components.

View 1 Replies







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