I have a web form (let's call it MainForm) with a textbox to get a certain date from the user. I need to store this date somehow server-side for later use. It was working fine while I was having the user click on the button on Mainform, but because of the client's specifications, I can't use a button to store this value, so I had to take it off. Now I'm trying to figure a way to get that value.
I have an iFrame (let's call it MyFrame) that has a web form in it that posts values to the database. At the time it posts, I need to be able to get the Date from the textbox on MainForm to post with the rest of the data.
I tried triggering a submit on the onblur event of the textbox to try to save the value to a variable on the server, but that didn't work. I tried accessing the textbox's value using the parent property, that didn't work either.
I have an iFrame (let's call it MyFrame) that has a web form in it that posts values to the database. At the time it posts, I need to be able to get the Date from the textbox on MainForm to post with the rest of the data.
I tried triggering a submit on the onblur event of the textbox to try to save the value to a variable on the server, but that didn't work. I tried accessing the textbox's value using the parent property, that didn't work either.