Search results for query: *

  1. A

    aspx page won't run

    yes, the aspnet machine account has read and execute, list folder contents, and read permissions.
  2. A

    aspx page won't run

    No, it isn't a domain controller. Believe it or not, I am still unable to get the aspx page to work. Now I'm getting "Page not found." I can actually display default.aspx on the production server. I put a button on default.aspx with Response.write to display a message "you clicked the...
  3. A

    aspx page won't run

    TPM -- Check out my first post where it says I've created the application. Thanks for the screen shot though. John H -- I looked up MapPath function, however, after reading several articles, was still not sure of what the code should be or where it goes. I suspected it would be...
  4. A

    aspx page won't run

    Thanks for the explanation, but I don't know where I'm supposed to perform the mappath function. Can it be done in IIS, or is it code that needs to be put in the .aspx.vb file. Or is it a setting somewhere in a config file? Also, my app runs fine on my development machine. I didn't have...
  5. A

    aspx page won't run

    I don't understand what this means: " you must server.mappath to gain access to local filesystem from asp.net script anyway." I did the first part -- On the virtual directory, I gave permission to the IUSR_machinename account, but still get the access denied error. I've left anonymous access...
  6. A

    aspx page won't run

    I was reading the article "Side-By-Side Execution of the .net framework" at msdn microsoft com. There near the end it talks about the aspnet_filter dll. I added this filter under my applications's isapi filters tab. I was trying to add aspnet_isapi.dll which was apparently the wrong one...
  7. A

    aspx page won't run

    Yes, I'm waiting for a response from one of our consultants who is very busy, so in the meantime, I'm trying to figure this out. Just wondering, should the aspnet_isapi.dll be listed for the site under isapi filters tab. I have one filter for front page -- fpexedll.dll . It is not listed in...
  8. A

    aspx page won't run

    I ran aspnet_regiis -i on the web server, but still get "the page cannot be found" when I try to run Default.aspx. (Default.htm displays fine). The surprise to me was that IIS stopped after I ran the command and I had to restart IIS (all of our sites stopped!!!) . Another strange thing --...
  9. A

    aspx page won't run

    I have added Default.aspx to the list of default documents. I have both a default.htm and default.aspx. If I move default.htm to the top of the list, it will run. If I move default.aspx to the top of the list, I get an error.
  10. A

    aspx page won't run

    I've developed a web app using vstudio .net 2002 on Windows XP. My app runs perfectly fine on my machine. I've copied my project files to a windows 2000 web server. I've created an application and the aspx filter is visible for all the extensions. Still, IIS 5.0 on web server won't run...
  11. A

    dataset won't fill

    Hi, All the properties matched. So I re-created the web form in the working project (copy/paste controls and code). Then, I was able to instantiate the dataset by dragging it into the component tray of the form (which I could not do on the ailing web form/dataset). Now, miraculously...
  12. A

    dataset won't fill

    The fun continues..... By the way, the os is xp pro on dev machine. SQL Server 2000. So, I deleted the dataset (after backing up project) and tried to generate it again. It gave me the message "There were problems generating the dataset, rebuild and try again" (see attachment). When I said...
  13. A

    dataset won't fill

    I can open the dataset with another app. I created a new project in Visual Studio and added my data component to it. I was able to generate a dataset and fill a data grid with the data. So, the component seems to be fine. Should I delete the corrupted dataset from my project and then try...
  14. A

    dataset won't fill

    Questions lead to Answers...... No, my system has not been upgraded to .net framework 2.0 since the release. I don't believe null data is present now that wasn't before. The data has not changed. No one has access to the code except me, so no one changed the properties of the dataset...
  15. A

    dataset won't fill

    Yes, I did change from debug to release before deployment. Then today when I discovered I had a problem, I changed it back to debug. Since this is my first deployed project, I'm lost as to what happened here.
  16. A

    dataset won't fill

    Hi, This is a web app that seems to have stopped working as expected after I did a release configuration. All of a sudden, my dataset will not fill. Line 465 -- Line 464: Public Sub FillDataSet(ByVal dSet As dsAnalystJobs) Line 465: daParent_AnalystJobs.Fill(dSet) Line 466...
Back
Top