Jump to content

RightPilot

Members
  • Posts

    13
  • Joined

  • Last visited

Posts posted by RightPilot

  1. From the sever side, I want to be able to select the value in a drop down. The problem is that the dropdown is one of 6. One of these 6 dropdowns is selected based on another dropdown's selection. i.eID=DropDown1 Options=A, B, C, D, E, Fwill then cause one of the following to have the ID=DropDownA Options=...ID=DropDownB Options=...ID=DropDownC Options=<appropriate value selected>ID=DropDownD Options=...ID=DropDownE Options=...ID=DropDownF Options=...So essentially, I will have:"DropDown" + DropDown1.SelectedValueas a string representing the ID of the dropdown which I then want to search for in the page...What method/procedure do I use to search for the right control in the page?Right P.

  2. Hi:I have a user control for a drop down of selection of states of U.S. This user control is used in different pages. In one of these pages, if the state is 'FL', I would like another checkbox to appear in the next section for user input. Ideally, I would like to accomplish this without a postback and therefore in javascript. But how do I:trigger an event via the user control without postback and verify that it is the correct drop down and the selection is 'FL' andmake the checkbox div appear?Right

  3. The State selection is drop down menu in the page itself. It lets user select states i.e. 'GA', 'SC', 'CA' etc. The problem is that the sublist of the unordered list goes in the background of the state selection drop down in the page making it unviewable... any way to post graphics in these posts?Right

  4. Hi:I have one drop down (in fact a list) in the menu section and another within the page. When clicked, the first one hides behind the second one. Here is the code for the drop down in the menu section:<tr><td class="admin_nav" NOWRAP style="font-size:8pt"><ul id="nav"><li><a href="http://www.closingsource.net">Home</a></li><li> | <a href="Order.aspx">Order Title</a></li><li> | <a href="SearchOrders.aspx">Search Orders</a></li><li> | <a href="SearchVendors.aspx">Vendor Lookup</a></li><li> | <a href="ControlPanel.aspx">Control Panel</a><ul><li><a href="ManageWorkflow.aspx">   Workflow Steps</a></li><li><a href="ManageWorkers.aspx">   Worker Definitions</a></li><li><a href="ManageVendors.aspx">   Vendors</a></li><li><a href="ManageTemplateFiles.aspx">   Template Files</a></li><li><a href="ManagePermissions.aspx">   Permissions</a></li><li><a href="ManagePendingClientUsers.aspx">   Pending Users</a></li><li><a href="ManageClientCompanies.aspx">   Client Companies</a></li><li><a href="ManageFirmLocations.aspx">   Firm Locations</a></li><li><a href="ManageContacts.aspx">   Contacts</a></li><li><a href="ContactImporter.aspx">   Contact Importer</a></li></ul></li><li> | <a href="LogOut.aspx">Log Out</a></li></ul></td></tr>It is the 'Control Panel' menu that hides behind the State selection drop down in the page. I am not able to attach graphics otherwise, that would make it more understandable...Right

  5. run this in the command line (2 seperate commands)aspnet_regiis -uaspnet_regiis -iSounds like .Net didn't register itself with IIS on install. I had the same problem whne setting up my web server. I ran both of these commands and it corrected the problem.
    Woohoo! that did it. Thanks aspnetguy AND jesh for all your help...Right P
  6. Which is the error I got. I thought maybe it was since I had a Web.config file set up to display those errors. However, I deleted the web.config file and the I still got the "response does not exist in the current context".Looking closer at the error message, RightPilot:Have you looked at that log?
    Well, after uninstalling and reinstalling everything AND making the changes per jesh, I am now getting this error:The XML page cannot be displayed Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later. --------------------------------------------------------------------------------A name was started with an invalid character. Error processing resource 'http://localhost/mytest.aspx'. Line 3, Position 2 <%
  7. in the IIS treeview you went to "Websites" expanded it to see Default Website right? Well, above Websites it should say Application Pools or App Pools. Expand App Pools and right click on Default App Pool and choose recycle.
    correct, thats where I went. However, Application Pools does not exist. I checked our actual server and it exists there. Why would it be missing on my PC? is it due to an older version of IIS? Can this possibly have to do with the problem that I am having?thanks for your help so far. I really appreciate it.Right P
  8. check the properties of Default Website in IIS, make sure on the ASP.Net tab that version 2.0 is selected. Also try recycling the Default App Pool.
    version is: 2.0.50727. How do I recycle the default App pool?
  9. Since you worked with ASP before I assume IIS was already installed when you installed the .Net framework, correct?Now what is happening when you go to http://localhost/test.aspx?DO you get an error or just a white screen?
    IIS is installed. I have the same page in .asp and it runs fine. I get the following message when I run http://localhost/mytest.aspx: Server Application Unavailable The web application you are attempting to access on this web server is currently unavailable. Please hit the "Refresh" button in your web browser to retry your request. Administrator Note: An error message detailing the cause of this specific request failure can be found in the application event log of the web server. Please review this log entry to discover what caused this error to occurHere is the code:
    <html><body><%response.write("Hello World!")%></body></html>

  10. I am familiar with ASP. Just started working in .NET. I am testing locally on IIS. My question is can you and if so how do you view/test .aspx pages locally?I am able to view the .asp pages without problem but cannot bring up the .aspx page..Windows XP ProNET framework 2.0IE 6.0any other requirements?RP

×
×
  • Create New...