-
Posted to
IIS.NET Site Feedback
by
deepak.vasudevan
on
04-23-2007, 10:34 PM
Hi,I got redirected to IIS Forums from http://forums.asp.net/
I was curious about where is the 'Hall of Fame' and Community Recognition Points scheme? Are these managed single point at ASP.NET site itself or still to be implemented in IIS.NET forums?
-
Posted to
Classic ASP
by
deepak.vasudevan
on
04-23-2007, 10:27 PM
Any specific error message. As directed, please have Internet Explorer -> Tools -> Options -> Advanced (Uncheck) Show Friendly Http Error Messages.
-
Posted to
Troubleshooting
by
deepak.vasudevan
on
04-23-2007, 10:20 PM
I have the following issue. I need to configure my IIS to display friendly error messages. One of the virtual directories uses an ISAPI filter loaded under 'Wild Card Mappings'. Here I have unchecked 'Verify File Exists' checkbox.
Also, this ISAPI filter is required for another factor like processing custom file name extensions like .TDW ...
-
Posted to
Classic ASP
by
deepak.vasudevan
on
10-18-2005, 6:42 AM
In ASP.NET, we have a trick called URLRewriting.
-
Posted to
Publishing
by
deepak.vasudevan
on
10-10-2005, 5:09 AM
The protocol. WebForms submit via http (or https in case of SSL) and FTP uses FTP protcol.
-
Posted to
Publishing
by
deepak.vasudevan
on
10-10-2005, 5:08 AM
Hi,You can map the Network URL to a Mapped Drive and then check out. Did you try that?
-
Posted to
Classic ASP
by
deepak.vasudevan
on
10-10-2005, 5:04 AM
Hi,To have IIS serve content to all users you can select 'Anonymous'. You can allow IIS to control the password. Since you have modified these settings, you may need to visit this URL to sanitize your IIS Security Settings first:http://support.microsoft.com/default.aspx?scid=kb;en-us;297989
-
Posted to
Classic ASP
by
deepak.vasudevan
on
10-07-2005, 11:00 AM
Autoresponder is an application that responds to incoming email messages. ASP is a web presentation language, which parses the script in response to an HttpRequest and then swaps out of the memory.Autoresponder for example should reside along as a Win32 service pinging the mailserver for example or as a plugin to SMTP server and when the email ...
-
Posted to
Classic ASP
by
deepak.vasudevan
on
10-07-2005, 9:34 AM
Xean,I think the query gets formed all through and is executed only in this line:MM_editCmd.CommandText = MM_editQueryYou can try setting a breakpoint and see how the query has been formed. Most probably, one or more of input values is blank. Also, I would advise you to use Stored Procedures since a lot of input Request Form values are depending ...
-
Posted to
Classic ASP
by
deepak.vasudevan
on
09-16-2005, 7:01 AM
Moose,You can have check.asp to redirect itself with a querystring like loggedOn and a JavaScript to break the iframe and load index2.asp in top.location.href = 'index2.asp'.Did this attend to your query?