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 Chriss Miller 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 JoDaCoda

  1. JoDaCoda

    Watch Window not evaluating properties

    Nope. That's hosed too. I guess at this point I'm going to re-install Visual Studio. Thanks for your responses.
  2. JoDaCoda

    Watch Window not evaluating properties

    Thank you for your reply. Yes, it exists. Here is a portion of my function: gv = CType(fvProgID.FindControl("gvPermitEvents"), GridView) If gv.Rows.Count > 0 Then rw = gv.FooterRow strEventDate = CType(rw.FindControl("txtPermitEventDate")...
  3. JoDaCoda

    Watch Window not evaluating properties

    Hello Everyone, I am having a problem with the watch window in Visual Studio. Whenever I add in an object to watch, all of its properties values are "Property Evaluation Failed." MSDN suggests that you make sure your solution compilation is set to debug (duh). Already had that set. Does...
  4. JoDaCoda

    AJAX dropdownlist problem

    Thank you. I will post it there as well. Yes, this part of the thread is in vb, but it is only to continue the conversation. This code could also be C#, Perl, etc. The problem lies between javascript and any asp.net derived web application. The javascript I'm using is not setting the...
  5. JoDaCoda

    AJAX dropdownlist problem

    Sorry for such a long delay in my response. Another project took priority. The form is submitted using a web user control. When the asp button on the user control is pressed, it fires an event handler that saves the data. Private Sub Page_Load(ByVal sender As System.Object, ByVal e As...
  6. JoDaCoda

    AJAX dropdownlist problem

    Ok. Sorry about the omitting the code tags before. <form name="Form1" method="post" action="wfrmboileredit.aspx?mode=New" language="javascript" onsubmit="if (!ValidatorOnSubmit()) return false;" id="Form1" __smartNavEnabled="true"> <input type="hidden" name="__EVENTTARGET" value="" /> <input...
  7. JoDaCoda

    AJAX dropdownlist problem

    Yes, both of my elements are in my form. <form id="Form1" method="post" runat="server"> <asp:dropdownlist id="ddlInsuranceCo" style="Z-INDEX: 183; LEFT: 112px; POSITION: absolute; TOP: 336px" tabIndex="60" runat="server" Width="200px" CssClass="asp_dropdownlist"...
  8. JoDaCoda

    AJAX dropdownlist problem

    I have two dropdownlists where one is updated by what is picked in the other. I am using AJAX to retrieve data from my data server, writing it to xml, and then creating the options in the second dropdownlist. Everything works until I submit my form. The second dropdownlist's selectedIndex...
  9. JoDaCoda

    Pass form values from asp.net page to standard asp page

    This code will allow you to pass values from asp.net controls to a standard asp page. The problem is standard asp pages don't recognize the forms that house .net controls because the forms are run at the server. You must have a form that is not running at the server for the asp page to...
  10. JoDaCoda

    Pass Form values from asp.net to standard asp

    Sure. This is a simplified example of what I did. form1 is for objects that the asp page is to read from. form2 is for the asp.net controls. I put an html button on form2 that has javascript attached to its onclick event. The javascript fetches the values from form2 and puts them in form1...
  11. JoDaCoda

    Pass Form values from asp.net to standard asp

    Thanks for the link. I think I may have found an easier way though. I made two forms on my page. One for hidden html inputs for the asp page to read, and another for the .net controls (which is set runat=server). I then use javascript to update the html controls in the first form based on...
  12. JoDaCoda

    Pass Form values from asp.net to standard asp

    I am trying to update an old application that used asp. I have created a new asp.net page that allows users to pick options, and then redirects them to an asp page. The asp page needs to read the form object values from the asp.net page. I haven't been able to get this to work with anything...
  13. JoDaCoda

    Javascript not updating textbox

    That worked! Thanks. Do you have any idea why .text property works on my other pages but not this one?
  14. JoDaCoda

    Javascript not updating textbox

    I have an asp.net webform, which uses a javascript function to update a textbox with a value from a dropdownlist. This same code works fine on my other forms, but this one nothing happens. I have commented out all the code with the exception of sending a test string back to the textbox. This...
  15. JoDaCoda

    User Control Problems

    Thanks. That fixed it. I figured it was poor programming on my part. I just didn't know the proper way of doing it.

Part and Inventory Search

Back
Top