IronPython asp.net IntelliSense - asp.net

I'm trying IronPython for asp.net, I got a simple CRUD screen to work. I've read IntelliSense doesnt work for IronPython, but is there any way to get rid of Visual Studio underlining all the lines' starting tokens with blue and a message of "expected declaration"?

I don't know how to fix Visual Studio's warnings (in fact, I get quite a few strange ones with ASP.NET and C#).
A non-solution (sorry about that), but what I do a lot, is edit aspx files outside Visual Studio - for me that's VIM.

I had to uninstall IronPython and install ASP.NET future releases to solve it

Related

Migrate old VB.NET project from VS2013 to VS2017

I have a huge enterprise asp.net application that perfectly builds and runs on servers. We've been using Visual Studio 2013 in our workflow. Now we want to migrate to newer IDEs. But if I build this application in Visual Studio 2017 I'll get this error.
Error BC40004 sub 'PreInit' conflicts with event 'PreInit' in the base class 'Page' and should be declared 'Shadows'.
I think it's a problem with VB compiler version (again vs2013 builds project). Do you have any idea how to fix this?
My solution contains 40+ projects. The main project is asp.net webforms app written in VB.net. Other projects are services and code libraries written in C#.
I tried to specify VB.net version in .vdproj manually. But it didn't solve my problem.
edit: Fine. Thank you all for your responses. I got that problem is about code and that visual studio analyzer has changed a lot in the last few years. I'll try to find out the reasons why this code have been working without exceptions.
BC40004 is a warning, this shouldn't prevent you to compile the solutions unless you set the Treat warnings as errors on the project's property under the tab compilation.

Simple Website not building

I am new to ASP .Net programming. I know C,C++ and C#. I have got the book named ASP.Net 4.5.1 in C# and VB by Imar Spaanjaars.
I have got Visual Studio 2013 ultimate installed as well.
What is bothering me ?
I did exactly as the author told and I getting the errors when building
error. See screen shot.
Any help would be much appreciated.
It seems your project misses some dll in the project bin folder. Could you please check?
Otherwise it may be that you need to configure Nuget, in order to download automatically those missing packages.

Visual Studio 2013 debug not stepping in

I am developing a web application on Visual Studio 2013. On older versions, whenever there is a bug in the web app, I moved from the browser to the visual studio to the line where the code is.
Now, whenever there is a bug, I just see it in the browser without being able to see it in the Visual Studio. As if the debugger is not able to step into my code.
This has been going on for all my web projects which makes me feel that it is a setting in VS but I am not able to locate it.
can anyone help?
I was able to find out what was wrong here.
it seems that for some reason, under Debug in the main menu and under Exceptions, nothing was checked! I checked ALL "Common Language Run-time Exceptions" and it worked for me.
However, you need to spend sometime there in the debugging list. If you enable ALL, you will get all sort of exceptions captured.

Compiling ASP.NET

I'm compiling ASP.NET code for the first time ever and I'm stumped.
I downloaded MINGW-Get and just finished installing it. The client gave me the source code and I found a file called RSConfig.exe.
So I assumed that was the config file, ran it, and then tried "make" but got the error
No targets specified and no makefile found. Stop
Any idea what I'm supposed to do? I don't see anything that would resemble a makefile in the source code.
Thanks in advance!
Do yourself a favour and install Visual Studio Express:
http://www.microsoft.com/visualstudio/en-us/products/2010-editions/express
It makes development easier and fast
It sounds like you might want to get familiar with the background concepts around asp.net and it's defacto development environment Visual Studio (there are many versions of visual studio).
As Andrei recommends, using Visual Studio Express is a good free way of getting started. The version most suited for web development is Visual Web Developer Express.
Attempting to compile .net code from a toolset such as MinGW isn't a typical route for using asp.net, however I've not used MinGW before and not sure it's possible to compile .net code from it.... Although it is perfectly possible to compile .net code from the command line (using the .net framework sdk) , I certainly wouldn't recommend it if you are getting started.
I'm going to make a guess that it is an ASP.net web forms project, it being the most prolific asp.net project type at the moment.
This official asp.net site http://www.asp.net/web-forms will guide you through what web forms are and how to get the development environment setup. Having this sort of background will aid you in solving your particular situation.

ASP Code Highlighting in Aptana

I've been using Aptana 3 for awhile, mostly for HTML, CSS and PHP editing. I just started working a lot with ASP, and right now Aptana isn't syntax highlighting asp files. How do I set it up to do that? Do I have to install a plugin? Add an ASP editor? Flip a switch? Any help would be greatly appreciated.
Josiah, since Aptana is built upon the Eclipse IDE, I've read that you should be able to use the Eclipse Colorer Plugin to achieve syntax highlighting for ASP files - I've never done this myself though. If you started working with ASP, at least in case of ASP.NET I'd highly recommend using Visual Studio (for example the free Visual Web Developer 2010 Express) for debugging support and many other features...

Resources