The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
12 views

Why session in cs class file is null ? (web project .net 2010)

i have a cs class file in a web project in vs 2010. in class,i read and wirte session variables. but my Session property is null! i use this: public static int UserID { get ...
0
votes
1answer
138 views

character encoding in java web project

I just get a strange encoding problem in java web project. System.out.println("search url: " + searchURL); searchURL = new String(searchURL.getBytes("utf-8"), "utf-8"); ...
0
votes
1answer
75 views

Add “Visual Studio Web site” to “MVC 4 Web Project”

Add "Visual Studio Web site" to "MVC 4 Web Project". I have done following steps: - Created a new MVC 4 Web project using visual studio 2012. - Created a folder under this project. - Copied all ...
0
votes
0answers
14 views

I want to build a web project using SSH, which project model should I choose, Dynamic Web Project or Tomcat Project?

What makes me confusing is that I build a Dynamic project, but when I run it in Juno Eclipse, but I could not find any file in my tomcat server. Surprisingly, it works well!!??
0
votes
1answer
108 views

Hosting Java Web Project on IIS [duplicate]

Possible Duplicate: Running a java web application in IIS I have a web project created and running fine on MyEclipse. Can I host this on IIS Server? If so, do I need to have any plug-in? ...
0
votes
2answers
55 views

ASP.NET Development with a Design Team

I am looking for some good information on the best way for a design and development team to work together. I am a WinForms developer and I have very little experience in .NET web development and I ...
19
votes
3answers
3k views

publish empty directories to a web application in VS2010 web project

Often I need to publish a web project preserving a directory tree even if the directories are empty, for example, directories to hold uploaded files. If I publish my app using the VS2010 publish ...
0
votes
2answers
482 views

Add custom user control to published web project

I am beginning to wonder if this is even possible. It just seems so simple. I have a published web project. I want to add some .ascx files (with .cs & designer.cs files) to that published web ...
2
votes
3answers
203 views

technology for new webproject?

i am planing to set up a new webproject which has to use a database and a model which can be presented in a browser. I looked at a lot of technologies (JSF, PHP, ..) but i could not find a free and ...
3
votes
3answers
2k views

How Can I Use NUnit with ASP.NET Website (Not Web Project)?

I am new to unit testing and I wanted to give NUnit a try. In an ASP.NET Web Project, I can create a new project in my web project solution for unit testing and add a reference to my original project ...
3
votes
3answers
1k views

Maven: Combine web projects

I have following Maven projects set up: PM-Core PM-Web (with a dependency to PM-Core) Now, this project is used for several clients but for each client there are some small differences: mostly ...
1
vote
1answer
1k views

Why am I getting an error stating 'The certificate authority is invalid or incorrect' when opening my .NET 1.1 project in VS2003

(I just wrestled with this issue and didn't find much out there so I'm dumping my problem and resolution here) We've had a .NET 1.1 web project under development hosted on a Windows 2k3 server which ...
1
vote
1answer
274 views

Change web project to class library

Is there any way but copying the .cs files? Changing the .csproj file? But how? There is a related question, but I'm not satisfied with the answer: link
9
votes
9answers
2k views

What technology stack would you use for starting a new .NET web project?

I'm about to start building a new web project based on the .NET technology stack. What I want is to somehow avoid the "default" way of building ASP.NET web apps using webforms and stuff. So, the ...
2
votes
2answers
2k views

Running an MVC application through IIS results in “Directory listing denied”

I have an .Net MVC application which runs fine if I use the build in Visual Studio Webserver. If I use the projects property pages to switch to IIS as the webserver and create a virtual directory for ...