Search results for query: *

  • Users: Reeve
  • Order by date
  1. R

    URL redirect not working - question

    Problem solved. Not that anyone cares, but just in case... I needed to attach the newly created user control to the main (.aspx) page. Made the connections there and it loaded like a charm.
  2. R

    URL redirect not working - question

    The URL passes different parameters each time I click the link. I have also cleared out the cache and tried it again. Same effect. Also, the contents of the InitializeComponent() method were not erased. The page isn't even being loaded. The name of the page I want to load is...
  3. R

    Populating dropdown within a datagrid

    You could create a new List Item, then add it to the DDL and set it as default. Example Dim tempLI As List Item = New List Item tempLI.Text = "-SELECT-" tempLI.Value = 0 <----------- or another value that isn't being used ddlNetworkAccessGroup.Items.Add(tempLI)...
  4. R

    URL redirect not working - question

    User controls configuration issue I have a hyperlink control redirecting to another page within my site. The URL is passed with the correct parameters, however the page won't load. I'm fairly new to this so I copied an existing web page that was similar and made changes to reflect the new...
  5. R

    URL redirect not working - question

    I have a hyperlink control redirecting to another page within my site. The URL is passed with the correct parameters, however the page won't load. I'm fairly new to this so I copied an existing web page that was similar and made changes to the new context. The problem is that the new page...
  6. R

    Odd Question - DataSets and Sproc relationship

    I'm working on a web app. I recently added a column in the table 'clients'. I had to manually update the .xsd schema file. After doing that, modifying the client info via the web interface stopped working. To fix the problem, in the 'clients_modify' sproc I had to remove some of the where clause...
Back
Top