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

SmtpMail.Send(_MailMessage); doesn't work

I am using default smpt virtula server to send mail using c# but it doesn't send any mails and also it doesn't throw any exceptions public static void SendEmail(string _FromEmail, string _ToEmail, string _Subject, string _EmailBody) { //…
Ragaei
  • 1
0
votes
2 answers

IIS - Maximum Requests / Second on 8 core, 8 GB machine

Currently, I am administering server with single ASPL.NET website. Website is very realtime, once user opens the page, it gets updated every second. Luckily site is coded by really good guy, and it seems to be working pretty fine. I am watching…
nikib3ro
  • 133
  • 2
  • 8
0
votes
1 answer

Hosted (external firewalled) ASP.Net application to customer LDAP

Situation: I manage a hosted ASP.Net application that employs winform authentication. The application has role based security, and access control list to various assets. Multiple customer use the same application. Some but not all customers have…
M6rk
  • 63
  • 5
0
votes
1 answer

Will changing an SSL binding to new certificate in IIS7 affect Application Pools, i.e. cause them to recycle?

I want to change SSL bindings to a replacement certificate, but don't want to affect logged in users. Will doing this cause the Application Pools for the web site to recycle? Many thanks, Kenny
Kenny
  • 520
  • 1
  • 9
  • 24
0
votes
3 answers

SQL Server 2008 Login Problem

I'm trying to install yet another forum on my local machine, and while I'm configuring the database connection I got this message Failed to connect: Login failed for user 'NT AUTHORITY\NETWORK SERVICE'. I have served Google and I found that I…
0
votes
1 answer

Determining why IIS 6.0 Rapid-Fail Protection occurred

We had an IIS 6.0 Rapid-Fail Protection occur during testing of our ASP.NET web application. This issue appeared to be introduced by code that I wrote. How do we determine what caused it? There is nothing interesting showing up through ASP.NET…
Matthew Rodatus
  • 152
  • 1
  • 6
0
votes
2 answers

Host ASP.NET Web Application on local Machine

Please excuse me if this is very basic. My query is about hosting a .net web application on a server. Say, I create a small web application and I deploy this application in my home machine (which has an IIS server). How do I access this application…
Nishant
0
votes
1 answer

Restrict Directory Access to Specific Group (IIS)

I am runing a standalone IIS 6 server on top of a Server 2003 (Standard x64) installation. The IIS server is hosting 1 site that requires basic authentication over HTTPS to grant access. The site's structure is as follows: Site…
debracey
  • 192
  • 10
0
votes
1 answer

How do I set Application Configuration Mappings in IIS6 from the command line?

I am rolling out .NET 4 to around 60 servers, and I need register the .mvc extension to run with ASP.NET on each server after the install. Does anyone know a way to do this from the command line? Is it possible? I looked at the aspnet_regiis tool,…
IronicMuffin
  • 155
  • 1
  • 1
  • 8
0
votes
1 answer

IIS blocking WinForms invocation

I developed an ASP.NET web application that has the capability of invoking WinForms. Basically, I have a very close implementation of what is shown here - I am displaying a form that is built inside the web app. Now the problem - if I run the…
Den
  • 101
  • 2
0
votes
3 answers

Start IIS 6.0 application pool automatically

I read on MSDN that you can configure the Windows Process Activation Service (WAS) to automatically start an application pool when the application pool is created or when IIS is started. This only works on IIS 7.0 as far as I can tell. My question…
Espo
  • 366
  • 4
  • 10
0
votes
1 answer

IIS error after Windows update

A Windows 2003 update messed up my server bad, so I had to reinstall .net v2. Now I can't access any .aspx pages (html load fine). When I try, I get the following error: Server Error in '/'…
user745006
0
votes
1 answer

Using more than 1 thread per app pool causes IIS to return 503's and stop responding

We are hosting a WCF server farm. We currently have 12 app pools, but whenever we increase the threads per pool, we end up getting 503 errors. The service stops responding. How does one tell what is the best number of threads per app pool?
0
votes
1 answer

Enabling SSL in asp.net 4.0 and IIS 7.5

I have created an asp.net 4.0 project. I want to enable SSL for it. Do I need to map this web project to new website in IIS. When I try to create a new website, I get: The binding '*:80:' is assigned to another site. If you assign the same binding…
asif
  • 1
0
votes
1 answer

IIS 7 Site & application relationship

I'm trying to configure an ASP.NET MVc application to work under IIS. I've created IIS Site called SyncControlPanel which has a binding set to mydomain.com. This IIS site has one application inside : SynchronizationService. Now when I want to access…
kubal5003
  • 113
  • 4