I've installed Windows Server 2003...I created a
HelloWorld.aspx file and its associatied HelloWorld.vb
file and stored both files in the wwwroot directory.
When I put http://localhost/helloworld.aspx on the Address
line of my IE browser and press enter, I get the following
error msg:Access to..."C:WINDOWSMicrosoft.NETFrameworkv1.1.4322
Temporary ASP.NET Files oot2135a5088d69a834" is denied.
This works on my laptop which has XP Pro installed.
I would like to display a text file using aspx. I realise that I can add a key for a text file in the web.config file. But what do I do after that? I would like to use c# to do this and I woudl like to try to understand how it can be done with a dll?
I am having problems opening a .aspx file. I have installed the .NET 1.1 Framework. When I go into IIS,Websites, Default Website, then look at the properties under documents, default.aspx is not listed.Is there something that I need to configure to add aspx?
I have an asp.net 2.0 web application that I have pre-compiled and deployed to a Windows 2003 server. When I try to access the web application I get thefollowing message in my browser:
'The file '/Customer/Login.aspx' has not been pre-compiled, and cannot be requested'.
If I rename the folder containing the web app to something other than'Customer' then it works! I have tried deleting the folder and recreating it but I get the same problem. I have also copied the folder to another serverand it works without any problems.
have try to search from the MSDN, i found the namespace "System.Windows.Forms.HtmlWindow" has this function, but the my .NET Framework version 2.0 dont have the object. Moreover, i have try to download the .NET Framework version 2.0 from MSDN. But, it still dont have the "System.Windows.Forms.HtmlWindow".
I have just converted from Linux and Apache to MS 2000 running Visual Studio .NET on IIS 5.0. I have installed the .NET Framework and the .NET SDK.
I have an extremely simple problem. I can view an aspx file by double clicking on it, but I get a 500 error when I type its name in the
browser. "http://localhost/firstasp.aspx." I am able to get html and php pages to run from this server using localhost.
I added an application extension to the Default Website in the IIS Administrator. I pointed it to C:WINNTMicrosoft.NETFrameworkv1.1.432aspnet_i sapi.dll and used aspx as the extension of course.
I have a folder on webserverwwwroot, called staticContent. The folder has several message of the day text files, such as RepMotd.text. I have an admin page, AdminMotd.aspx, that allows a user to view and edit the contents of the files.
Webserver is running Win Server 2003 64-bit and IIS 6.0. The development machine is Win XP, using Visual Studio 2005 (thus ASP.Net 2.0.)
In IIS, staticContent folder has Write checked and execute permission is set to Script Only . In NTSF, the folder grants full permissions to Network System.
When I try to overwrite an existing file in staticContent, or try to create a new file, I get a System.UnauthorizedAccessException. The Application error log on webserver notes that the error is on the page I am trying to run, that my user name is what I logged in as, that I am authenticated, and that the thread account name is NT AUTHORITYNETWORK SYSTEM. Elsewhere, I am able to read these same files and insert them dynamically into the web page.
This is the code that I am trying to run in AdminMotd.aspx, cut down to the basics. If it makes any difference, the code is run "in page" and not as part of a separate code-behind file.
****************** <script runat="server"> Protected Sub MotdChange(ByVal ThisFile As String, ByVal ThisText As String) Dim sw As StreamWriter = New StreamWriter(StaticRoot + ThisFile, False) sw.Write(ThisText) sw.Close() End Sub
Protected Sub RepMotdChange_Click(Byval sender As Object, ByVal e As System.EventArgs) MotdChange("RepMotd.text", RepMotdText.Text) End Sub </script>
I have traced that the error occurs when New StreamWriter is called, rather than when actually trying to write to the file. Obviously I'm missing something, but danged if I can find it.
I have an asp.net page that I would like to open up another asp.net page within the first one. Like a parent - child relationship. I need to display a graph in the child on the parent.
I have a SQL database, which runs a basic search engine, it has about 3000 links at the moment. I am currently keeping track of the click through rate and displaying in, below the link so it says HITS TODAY / HITS TOTAL. What I would like to do now is to take it one start further and be able to offer people the opportuntiy to have a small piece of code in their site, that will be able to update another hits counter in my SQL server. I obviously dont want to allow people to my SQL or open the 3306 port to the public, I would just like to be able to load a small java / vbs or what ever, to be able to write to my SQL.. I use http://www.counted.com/ at the moment, but I want to be able to do just very basic hit counter, I think from looking at how other people seem to do it, I might need to do this using Java Script
I have a Hello World app written in VS2003 C# it runs fine on my local PC using IIS5 XP Pro Dotnet1.1 but when I up load it to my site I get the following:
Server Error in '/' Application. --------------------------------------------------------------------------------
Parser Error Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.
Parser Error Message: Could not load type 'WebApplication1.WebForm1'.
Recently my IIS link in admin tools will not open the iis control panel. I have been doing asp development on the machine for some time so it seems odd this problem has all of a suden happened. I read somewhere a file (iis.mcs?)could be corrupt? Does anyone know how to fix it?I ask this place 'cos I am thinking that someone using ASP too also has had a similar problem or can point me in the right direction.
How do i require ONLY 443 on one site and ONLY 80 on the other. The secure portion does not use Host headers. I have 2 websites on the same machine
SSL.MyMachine.com Normal.MyMachine.com
I want the guy who hits SSL.MyMachine.com to only be able to use port 443 and never port 80. I want the guy who hits Normal.MyMachine.com to only be able to use port 80 and never port 443. How do i require ONLY 443 on one site and ONLY 80 on the other. Becuase the secure portion does not use Host headers.
We have a link to an ecommernce page, it uses sessions (which we do not have access to change)
I want to create a popup window that will create a new Internet Explorer browser to open (at a page i specify). I dont mean like the javascript where it just opens a window and contains all the info that u have (same as if you hit ctl-n) I mean lauching Internet Explorer new again, going to this specific site to aviod the session that it is already in?
I know something about HTML and no more but recently i really like to learn ASP but unfortunatly no body know ASP here. How can start asp and what should i know before i start learning ASP.
Here is the process on the site before I ask the question: User logs in session is created based on username and userid user edits a record in the db a hidden field with the userid session is inserted in the db to show who edited the record
I had a user ( mike, id -1 ) edit a record today but the userid that got inserted was 2 ( scott ). mike doenst know scotts credentials and scott has never used the PC that mike is using, matter of fact scott hasnt even logged into the site today.
The "Session_OnStart" event doesnot fire if the website has .htm file as the startup document. If I change the extension of the default document from ..htm to .asp then I can see the event fires, But now I cant change the default page to .asp.
How can I make the Session_OnStart fire in that situation?
I've been using this installation of .NET for about 3 months without problems.After not using it for about ten days, I came back to my project and when I tried to run it with Debug>Start (F5), it comes up with this error.
"Error while trying to run project: Unable to start debugging ohn the web server. Could not start ASP.NET or ATL server debugging. Verify that ASP.NET or ATL server is correctly installed on the server."
Before I start de installing things,does anybody have any simple clues as to why this is happening?
I have been running IIS on Windows 2000 for several years with no problem.
Today, when I clicked on the system tray icon and clicked start service, nothing happened - no error messages. IIS just ignored me completely and would not start.
I am about to try a computer restart - but has anyone else run into this problem?
I would like to make a database that contains Picture, Name Job description, gender and web address. The database should be able to hold at least 1000 profiles.
What program would you sugest? Where do I get it? Are there any online tutorials you would suggest?
my understanding was when IIS restarts that time when the first session is requested application_on Start is called. My session time out is 1 minute. after every session time out happens when the session is requested then it goes to application_onStart first. Isn't application on start just happens only when IIS restarts and first session requested.
I am trying to stop and start the ftp service from an asp page using the niuser account.
my code is simple: shell.run "net start msftpsvc",0,true. ASP page returns no errors but nothing happens. code works in .vbs but not from the webserver (IIS6).Can someone tell me how to do this? I would also like to edit the registry if i can.
Could anyone recommend a server provider that can handle asp for a site that will contain roughly 500 pages that won't cost me the earth. The site will be UK based mainly for UK customers. I have found so many but it's tough to tell who is and isn't worth the money.
When I try run the project, I get an error as "unable to start debugging on the web server. the project is not configured to be debugged. " . I'm running it on Windows 2000. I've made sure that debug=true in the web.config file and the authentication mode = "Windows".
I also get an error when I try it on IE5 as :"Parser Error Message: It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level. This error can be caused by a virtual directory not being configured as an application in IIS " .
If I know the week number and the year, how can I calc the beginning and ending dates of the week? For background I'm going to do some grouping by week but don't just want to call the weeks Week 25, Week 26, Week 27, etc. And the week number is to be calculated with:
I have an Active Server Page connected to an MS Access database. I use this page to submit information to the database. Among the form fields is a start time and stop time field.
By setting the value of start time to <%=Time()%>, I'm able to collect the start time automatically when the new form is opened. I would also like to collect the stop time by clicking the submit button. Code: