Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by tektipster79

  1. tektipster79

    Importance of where sprocs are stored

    All great points, thanks guys!!
  2. tektipster79

    Importance of where sprocs are stored

    Are there any performance implications to storing a stored procedure in one database that accesses data in another database? Same server, just a different database. My reason for storing it on the other database is mainly for organizational purposes.
  3. tektipster79

    Hide list item with VBScript?

    Sorry I forgot the most important part. I don't have access to the list items "before" the fact unfortunately. They come from a database and then the code Response.Writes them out to the page. I've gotten to this part so far, <% Set oConnection = Server.CreateObject("ADODB.Connection")...
  4. tektipster79

    Hide list item with VBScript?

    I don't do much VBScript programming, I have some VBScript in an ASP page. I need to request the value of a server variable which I have done: Sub GetRoles dim decryptedRoles decryptedRoles = Decode(Request.ServerVariables("HTTP_ROLES")) GetRoles = decryptedRoles End Sub Then...
  5. tektipster79

    AJAX &quot;Conditional&quot; Dropdowns - is this even possible??

    jbenson, thanks for the suggestion, did you use any particular article etc as a starting point?
  6. tektipster79

    Searching a string

    I was thinking along the lines of a regex too, but I'm not sure what the regex would be.
  7. tektipster79

    AJAX &quot;Conditional&quot; Dropdowns - is this even possible??

    One other question, has anyone ever gotten cascading type dropdowns in a update panel to work properly? I notice online there are a lot of problems so I wondered if anyone really ever got this to work successfully.
  8. tektipster79

    Searching a string

    I'm looking for a way to search a string for a specific div, so that I can remove it. The div does have an id so it should be easy to find the start index, but I'm not sure how to indicate that the end index should be "</div>". How can I accomplish this?
  9. tektipster79

    AJAX &quot;Conditional&quot; Dropdowns - is this even possible??

    When adding a plain update panel (no additional options set or triggers): The entire page posts back but the dropdowns work properly. When adding an update panel with ChildrenAsTriggers="false" UpdateMode="Conditional" and an async trigger ControlID="ddlCountry"...
  10. tektipster79

    AJAX &quot;Conditional&quot; Dropdowns - is this even possible??

    Ok I take that back. It works, but the entire page is flashing/updating, not just the update panel.
  11. tektipster79

    AJAX &quot;Conditional&quot; Dropdowns - is this even possible??

    Ugh. I figured it out. In our header, on the master page, there was a google search they made from some older code that had a form tag in it. I removed it and now it works. Thanks for your help!
  12. tektipster79

    AJAX &quot;Conditional&quot; Dropdowns - is this even possible??

    Hmm. I removed the update panels, and did the following and it still isn't working: <tr> <td class="style1"> <asp:Label ID="lblCountry" runat="server"...
  13. tektipster79

    AJAX &quot;Conditional&quot; Dropdowns - is this even possible??

    i found an article that seems to describe my problem, but I don't fully understand it. The key point from the article (http://couldbedone.blogspot.com/2007/09/conditional-updatepanel-and-event.html) is: "So, the conclusion is very simple: "Don't change controls during the async postback that...
  14. tektipster79

    AJAX &quot;Conditional&quot; Dropdowns - is this even possible??

    This didn't work for me either, the same problem is happening. I still used my code to add list items to the dropdown, but I removed the update panel from the country dropdown and changed the page load code. The same problem is occurring. Did this work for you?
  15. tektipster79

    AJAX &quot;Conditional&quot; Dropdowns - is this even possible??

    I've been having a lot of trouble trying to implement cascading dropdowns (select a country, and then a state) with regular asp.net dropdowns. I've posted on a few other message boards and no one seems to know the answer. When the country dropdown selection changes, I send the selected value...

Part and Inventory Search

Back
Top