Questions tagged [asp.net]

Web application framework developed by Microsoft

ASP.NET is a web application framework developed by Microsoft that allows web developers to create dynamic web sites and applications.

First released in January 2002 it is the successor to Microsoft's Active Server Pages (ASP) technology.

ASP.NET is built on the Common Language Runtime (CLR), allowing programmers to write ASP.NET code using any supported .NET language such as C# or VB.NET.

1234 questions
0
votes
1 answer

How can I make public a webservice in my Windows 2003 server?

I'm trying to figure out how can I configure IIS to host a .NET Webservice (.asmx file) for public domain. The idea is to make public the asmx url so anyone can view it using Internet Explorer using http://ourpublicserver.com/ourwebservice.asmx (so…
Junior Mayhé
  • 185
  • 1
  • 10
0
votes
1 answer

Mail sending error asp.net

I've developed an application in asp.net MVC. My application sends a mail using my smtp server. It works fine in my local PC/network, But when I send mail using my web server (my website is hosted in godaddy.com), I get the following error: Error:…
Vikas
  • 103
  • 3
0
votes
1 answer

IE 8 scripts stopped working all of a sudden

We use a .NET based web application for our daily transactions. This web application uses java scripts and vb scripts extensively. We are able to connect to the site and authenticate. However the site is not fully functional when we login from one…
0
votes
1 answer

What user is asp.net run under in windows 7?

When running a web application in an Application Pool with Integrated Mode in IIS 7.5 on Windows 7, what user account is ASP.NET running under? Thanx in advance!
Clean
  • 101
  • 1
0
votes
1 answer

Does IIS7 not support ASP.NET - by default?

Does IIS7 not support ASP.NET - by default? i put asp.net files in there, but it says 404 - not found. And finding out if it's disabled if it can be disabled if it's enabled if it can be enabled if it's supported if it's not supported if it's…
Ian Boyd
  • 5,293
  • 14
  • 60
  • 82
0
votes
1 answer

Mapping new file type to IIS and 404 before passing off the request

I'm mapping new file types in IIS 6 to the ASP.NET processor; for example the .gif image type. IIS will see a GIF image doesn't not exist (e.g. http://www.example.com/NoExist.GIF ) and raise a 404 HTTP err before passing the request onto ASP.NET. I…
John K
  • 1,753
  • 3
  • 16
  • 21
0
votes
1 answer

Grant access only to certain ad domain group on IIS6, for web pages running asp.net and php

We are running IIS6 on Windows Server 2003 machine. We have a php based page (MediaWiki) and an asp.net MVC page. How can we configure IIS and Windows to allow access to this web pages only for selected AD domain groups, preferably without touching…
0
votes
1 answer

What type of security problems are mitigated by this .NET architecture?

Given the following physical layout for a .NET web application: DB (sql server, windows) - No public route (no table access, only stored procs) Web Service DAL (iis, windows) - No public route (can be accessed by web server via port 80 and 443) Web…
Jonno
  • 103
  • 1
0
votes
1 answer

Maintaining CSS on a pre-built ASP.net website. How can I run this locally on a home linux server?

I was in charge of the css for a website. I sent in my code to a guy who integrates the css with the dev site. Later they decided it would be better for me to have a more direct role in dealing with the css. I've downloaded everything on the ftp but…
DavidR
0
votes
2 answers

How to configure and access IIS in windows 7

I've installed IIS on Windows 7(Ultimate) by going to control panel>add/remove features/ then checking the IIS. alt text http://dl.dropbox.com/u/6863746/pics/APSNET.png How do I access something like a preference editor like in wamp server. In wamp…
user28233
  • 125
  • 1
  • 3
  • 12
0
votes
3 answers

How do I setup an ASP.NET server to prevent certain files from being available?

I have several files on my ASP.NET site that are for use solely by the application. Currently, they can be viewed in a browser by just using the URL. Is there a way to prevent this without actually moving the file or do I need to move the files to a…
Jeff Yates
  • 227
  • 1
  • 3
  • 11
0
votes
1 answer

Limiting File Types Logged by IIS (Reducing Log File Size)

Is there a way to say, for instance, don't write an entry in IIS logs for specific file types? The shear size of our logs today makes it difficult and cumbersome to filter them after the fact using LogParser and the like; we're only interested in…
Nariman
  • 229
  • 3
  • 10
0
votes
1 answer

What is slowing my application?

I am generating a report as a web page 3MB, I am a newbie, I am not sure why it is slow: the size is big the upload internet is slow the server is slow the browser is taking long time to process the client code (Jquery, javascript) If you need…
user1111111
  • 121
  • 1
  • 1
  • 4
0
votes
1 answer

Keep ASP.NET site and content separate

I have an ASP.NET site in folder x. Currently lots of other static content gets added to folder x and gets mixed in, making it one big mess. I would like to keep the ASP.NET site and the content separate somehow. I know you can create virtual…
Nelson Rothermel
  • 573
  • 1
  • 5
  • 9
0
votes
5 answers

Client A can ping server S, but client B cannot

I moved the question to here from stackoverflow.com https://stackoverflow.com/questions/2917569/unable-to-ping-server-from-client-b-but-able-to-ping-from-client-a-please-help I am trying to configure a IIS 6.0/Windows Server 2003 web server with a…