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")...
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...
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...
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...
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"...
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...
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...
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...
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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.