The "Add" button as shown is firing correctly and posting back on my localhost but for some reason it hasn't been on the live server (Godaddy IIS7). Other submit buttons on the site do fire correctly though. Does anyone know why?
Can you post sode additional code, such as some of the markup around your submit button (or the form surrounding it) as well as the code-behind that could be relevant to the issue. It would make the troubleshooting process a bit easier.
OK. I will give you the HTML output source of the local file and then the remote file. I'll start with the code behind though:
Protected Sub ButtonAdd_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles ButtonAdd.Click
fAppointmentAdd()
End Sub
Private Function fAppointmentAdd() As Boolean
If fEntryInvalid() = True Then
Exit Function
End If
Dim c As New QVTransaction
With c
.pAppointmentDateTimeLocal = fDateTimeGet( _
TextBoxAddDate.Text.Trim, _
TextBoxAddTimeHour.Text.Trim, _
TextBoxAddTimeMinute.Text.Trim, _
DropDownListAMPM.SelectedValue)
.pAppointmentWith = DropDownListAddWith.SelectedValue
.pCreatedBy = cS.pQVSessionLoginEmailAddress
.pEmailAddress = TextBoxAddEmail.Text.Trim
.pNameCodeUsed = TextBoxAddNameCode.Text.Trim
.pFirstName = TextBoxAddFirstName.Text.Trim
.pLastName = TextBoxAddLastName.Text.Trim
.pMobileNumber = TextBoxAddMobile.Text.Trim
.pQueueID = cS.pQVSessionQueueNumber
.fAdd()
End With
fNameCodeSaveValues()
GridView1.DataSourceID = "SqlDataSource1"
GridView1.DataBind()
'Clear Code and Items
fClearNameCodeAndItems()
End Function
It appears you have two submit buttons that have the same ID property. This would be considered invalid markup and may explain why the submit isn't firing properly :
Thanks but no -- what you are seeing is one button -- if you look at the HTML you'll see I posted both the local HTML page and the remote HTML page with the words "Remote HTML" separating them. I just searched and saw there was only one button for each.
To resolve this issue in a simpler way, please just remove all part of the unnecassary codes, leaving only the "submit" button. If there is any URL that you can refer me to, I am happy to check
Thanks. The event isn't even firing on the live server -- no postback.
I changed the code to test it. It works fine on the localhost with a popup:
Protected Sub ButtonAdd_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles ButtonAdd.Click
fAppointmentAdd()
End Sub
Private Function fAppointmentAdd() As Boolean
MsgBox("Add button fired.")
Exit Function
...
However nothing happens on the live server. BTW, here's the HTML in question when I right-clicked, inspect element in Chrome on the live server page:
Mark Br
Member
89 Points
173 Posts
Submit button not firing?
Jan 20, 2013 09:07 PM|LINK
Hi
The "Add" button as shown is firing correctly and posting back on my localhost but for some reason it hasn't been on the live server (Godaddy IIS7). Other submit buttons on the site do fire correctly though. Does anyone know why?
Here's the button code:
Rion William...
All-Star
27716 Points
4574 Posts
Re: Submit button not firing?
Jan 20, 2013 11:21 PM|LINK
Can you post sode additional code, such as some of the markup around your submit button (or the form surrounding it) as well as the code-behind that could be relevant to the issue. It would make the troubleshooting process a bit easier.
Mark Br
Member
89 Points
173 Posts
Re: Submit button not firing?
Jan 21, 2013 05:58 AM|LINK
OK. I will give you the HTML output source of the local file and then the remote file. I'll start with the code behind though:
Protected Sub ButtonAdd_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles ButtonAdd.Click fAppointmentAdd() End Sub Private Function fAppointmentAdd() As Boolean If fEntryInvalid() = True Then Exit Function End If Dim c As New QVTransaction With c .pAppointmentDateTimeLocal = fDateTimeGet( _ TextBoxAddDate.Text.Trim, _ TextBoxAddTimeHour.Text.Trim, _ TextBoxAddTimeMinute.Text.Trim, _ DropDownListAMPM.SelectedValue) .pAppointmentWith = DropDownListAddWith.SelectedValue .pCreatedBy = cS.pQVSessionLoginEmailAddress .pEmailAddress = TextBoxAddEmail.Text.Trim .pNameCodeUsed = TextBoxAddNameCode.Text.Trim .pFirstName = TextBoxAddFirstName.Text.Trim .pLastName = TextBoxAddLastName.Text.Trim .pMobileNumber = TextBoxAddMobile.Text.Trim .pQueueID = cS.pQVSessionQueueNumber .fAdd() End With fNameCodeSaveValues() GridView1.DataSourceID = "SqlDataSource1" GridView1.DataBind() 'Clear Code and Items fClearNameCodeAndItems() End FunctionHTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head><link rel="stylesheet" type="text/css" href="/LocalQVApp/DXR.axd?r=1_3-HpYh4" /><link rel="stylesheet" type="text/css" href="/LocalQVApp/DXR.axd?r=1_4-HpYh4" /><link rel="stylesheet" type="text/css" href="/LocalQVApp/DXR.axd?r=1_2-HpYh4" /><title> QVApp.com | CompanyA | Edit/Add Items </title> <link href="styles/StyleSheetGridView.css" rel="stylesheet" type="text/css" /> <style type="text/css"> .style1 { width: 945px; } .dxmMenu, .dxmVerticalMenu { font: 9pt Tahoma; color: black; background-color: #F0F0F0; border: solid 1px #A8A8A8; padding: 2px 2px 2px 2px; } .dxmMenuItem, .dxmMenuItemWithImage { padding-top: 4px; padding-right: 8px; padding-bottom: 5px; padding-left: 8px; } .dxmMenuItem, .dxmMenuItemWithImage, .dxmMenuItemWithPopOutImage, .dxmMenuItemWithImageWithPopOutImage, .dxmVerticalMenuItem, .dxmVerticalMenuItemWithImage, .dxmVerticalMenuItemWithPopOutImage, .dxmVerticalMenuItemWithImageWithPopOutImage, .dxmMenuLargeItem, .dxmMenuLargeItemWithImage, .dxmMenuLargeItemWithPopOutImage, .dxmMenuLargeItemWithImageWithPopOutImage, .dxmVerticalMenuLargeItem, .dxmVerticalMenuLargeItemWithImage, .dxmVerticalMenuLargeItemWithPopOutImage, .dxmVerticalMenuLargeItemWithImageWithPopOutImage { font: 9pt Tahoma; color: black; white-space: nowrap; } .style2 { font-size: xx-large; font-weight: bold; } .style3 { color: #999999; } </style> <link href="../../master_page/styles/MasterPage.css" rel="stylesheet" type="text/css" /><link href="../../../App_Themes/Theme1/StyleSheet.css" type="text/css" rel="stylesheet" /><style type="text/css"> #ctl00_ASPxMenu1 a:visited { font-family:Arial!important;font-weight:bold!important; } #ctl00_ASPxMenu1_DXM0_ a:visited { font-family:Arial!important;font-weight:bold!important; } #ctl00_ASPxMenu1_DXM0i0_ a:visited { font-family:Arial!important;font-weight:bold!important; } #ctl00_ASPxMenu1_DXM0i1_ a:visited { font-family:Arial!important;font-weight:bold!important; } #ctl00_ASPxMenu1_DXM0i2_ a:visited { font-family:Arial!important;font-weight:bold!important; } #ctl00_ASPxMenu1_DXM0i3_ a:visited { font-family:Arial!important;font-weight:bold!important; } #ctl00_ASPxMenu1_DXM0i4_ a:visited { font-family:Arial!important;font-weight:bold!important; } #ctl00_ASPxMenu1_DXM1_ a:visited { font-family:Arial!important;font-weight:bold!important; } #ctl00_ASPxMenu1_DXM2_ a:visited { font-family:Arial!important;font-weight:bold!important; } #ctl00_ASPxMenu1_DXM2i0_ a:visited { font-family:Arial!important;font-weight:bold!important; } #ctl00_ASPxMenu1_DXM2i1_ a:visited { font-family:Arial!important;font-weight:bold!important; } #ctl00_ASPxMenu1_DXM2i2_ a:visited { font-family:Arial!important;font-weight:bold!important; } #ctl00_ASPxMenu1_DXM2i3_ a:visited { font-family:Arial!important;font-weight:bold!important; } </style></head> <body onload="fViewPCJSetPanelUpdateTimers();"> <form name="aspnetForm" method="post" action="default.aspx" onsubmit="javascript:return WebForm_OnSubmit();" id="aspnetForm"> <div> <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" /> <input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" /> <input type="hidden" name="__LASTFOCUS" id="__LASTFOCUS" value="" /> <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKLTYwNjIwMTQ0Mw9kFgJmD2QWAgIDD2QWDAIBDw8WAh4EVGV4dAUTTWFyayBCcm93bmxlZSZuYnNwO2RkAgMPDxYEHwAFIldoaXRlY3Jvc3MgTWVkaWNhbCBDZW50ZXIgKDEwMjA0NikeB1Zpc2libGVnZGQCBA8PFgIfAWdkZAIFDzwrAAkCAA8WBB4OXyFVc2VWaWV3U3RhdGVnHg9EYXRhU291cmNlQm91bmRnZAYPFgIeCklzU2F2ZWRBbGxnDxQrAAM8KwAMAgAWCB8ABQVRdWV1ZR4HVG9vbFRpcAUFUXVldWUeDlJ1bnRpbWVDcmVhdGVkZx4IRGF0YVBhdGgFJGNjOTVhMGRjLTNhMTQtNDc4YS05MDNhLTg5NTBmMWFlN2Q0MgEPZBAWBWYCAQICAgMCBBYFPCsADAEAFgweC05hdmlnYXRlVXJsBR0vTG9jYWxRVmlld2VyL3BhZ2VzL3Evc2VsZWN0Lx8ABQZTZWxlY3QfBQUGU2VsZWN0HgROYW1lBQtRdWV1ZVNlbGVjdB8GZx8HBR0vbG9jYWxxdmlld2VyL3BhZ2VzL3Evc2VsZWN0LzwrAAwBABYMHwgFHi9Mb2NhbFFWaWV3ZXIvcGFnZXMvcS92aWV3L3BjLx8ABQRWaWV3HwUFBFZpZXcfCQUEVmlldx8GZx8HBR4vbG9jYWxxdmlld2VyL3BhZ2VzL3Evdmlldy9wYy88KwAMAQAWCh8IBRsvTG9jYWxRVmlld2VyL3BhZ2VzL3EvZWRpdC8fAAUORWRpdC9BZGQgSXRlbXMfBQUORWRpdC9BZGQgSXRlbXMfBmcfBwUbL2xvY2FscXZpZXdlci9wYWdlcy9xL2VkaXQvPCsADAEAFgwfCAUaL0xvY2FsUVZpZXdlci9wYWdlcy9xL25ldy8fAAUKQ3JlYXRlIE5ldx8FBQpDcmVhdGUgTmV3HwkFCFF1ZXVlTmV3HwZnHwcFGi9sb2NhbHF2aWV3ZXIvcGFnZXMvcS9uZXcvPCsADAEAFgofCAUeL0xvY2FsUVZpZXdlci9wYWdlcy9xL29wdGlvbnMvHwAFB09wdGlvbnMfBQUHT3B0aW9ucx8GZx8HBR4vbG9jYWxxdmlld2VyL3BhZ2VzL3Evb3B0aW9ucy9kPCsADAEAFgofCAUdL0xvY2FsUVZpZXdlci9wYWdlcy9oYXJkd2FyZS8fAAUISGFyZHdhcmUfBQUISGFyZHdhcmUfBmcfBwUdL2xvY2FscXZpZXdlci9wYWdlcy9oYXJkd2FyZS88KwAMAgAWCB8ABQVBYm91dB8FBQVBYm91dB8GZx8HBSQ1MzgzZGIzYS00NTBhLTQ0ZmItYTg4YS0xYmIxMzQ2ZmVmNzkBD2QQFgRmAgECAgIDFgQ8KwAMAQAWCh8IBRgvTG9jYWxRVmlld2VyL3BhZ2VzL3doeS8fAAUMV2h5IFFWaWV3ZXI/HwUFDFdoeSBRVmlld2VyPx8GZx8HBRgvbG9jYWxxdmlld2VyL3BhZ2VzL3doeS88KwAMAQAWCh8IBSUvTG9jYWxRVmlld2VyL3BhZ2VzL2NlcnRpZmllZHBhcnRuZXJzHwAFEkNlcnRpZmllZCBQYXJ0bmVycx8FBRJDZXJ0aWZpZWQgUGFydG5lcnMfBmcfBwUlL2xvY2FscXZpZXdlci9wYWdlcy9jZXJ0aWZpZWRwYXJ0bmVyczwrAAwBABYKHwgFGS9Mb2NhbFFWaWV3ZXIvcGFnZXMvaGVscC8fAAUIR2V0IEhlbHAfBQUIR2V0IEhlbHAfBmcfBwUZL2xvY2FscXZpZXdlci9wYWdlcy9oZWxwLzwrAAwBABYKHwgFHC9Mb2NhbFFWaWV3ZXIvcGFnZXMvY29udGFjdC8fAAUHQ29udGFjdB8FBQdDb250YWN0HwZnHwcFHC9sb2NhbHF2aWV3ZXIvcGFnZXMvY29udGFjdC9kZGQCBw9kFgYCAw8PFgIfAAUnV2hpdGVjcm9zcyBNZWRpY2FsIENlbnRlciBRdWV1ZSBEaXNwbGF5ZGQCCQ9kFgJmD2QWAgIRDxAPFgIeC18hRGF0YUJvdW5kZ2QQFQUIRHIgR3JlZW4HRHIgR3JleQlEciBIYW5zb24IRHIgU21pdGgMLi4uRWRpdCBMaXN0FQUIRHIgR3JlZW4HRHIgR3JleQlEciBIYW5zb24IRHIgU21pdGgMLi4uRWRpdCBMaXN0FCsDBWdnZ2dnZGQCCw9kFgJmD2QWCAIHDzwrAA0CAA8WBh4NRW1wdHlEYXRhVGV4dAUVTm8gaXRlbXMgZW50ZXJlZCB5ZXQuHwpnHgtfIUl0ZW1Db3VudAIGZAEQFgICBgILFgI8KwAFAQAWAh4KSGVhZGVyVGV4dAUE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aW5nDkluIEFwcG9pbnRtZW50CEZpbmlzaGVkCUNhbmNlbGxlZAZEZWxldGUUKwMFZ2dnZ2cWAWZkAgoPDxYCHwAFBiZuYnNwO2RkAgsPZBYCAgEPDxYCHwBlZGQCBg9kFg4CBQ9kFgICAQ8PFgIfAAUIRHIgR3JlZW5kZAIGD2QWAgIBDw8WAh8ABQk5OjMwIEEuTS5kZAIHD2QWAgIBDw8WAh8ABQNKb2VkZAIID2QWAgIBDw8WAh8ABQZCbG9nZ3NkZAIJD2QWAgIBDxAPFgYfEAUGNDA3MzMxHwpnHw8CAmQQFQUHV2FpdGluZw5JbiBBcHBvaW50bWVudAhGaW5pc2hlZAlDYW5jZWxsZWQGRGVsZXRlFQUHV2FpdGluZw5JbiBBcHBvaW50bWVudAhGaW5pc2hlZAlDYW5jZWxsZWQGRGVsZXRlFCsDBWdnZ2dnFgFmZAIKDw8WAh8ABQkxMjMxMjMxMjNkZAILDw8WAh8ABdsBPGEgaHJlZj0nbWFpbHRvOmpvZS5ibG9nZ3NAbm93d2hlcmUxMjMxMzMuY29tJyA+PGltZyBzcmM9J2h0dHA6Ly9sb2NhbGhvc3Q6NTgzOTEvTG9jYWxRVmlld2VyL3BhZ2VzL3EvZWRpdC9pbWFnZXMvaWNvbl9lbWFpbC5wbmcnIGJvcmRlcj0wIGFsdD0nam9lLmJsb2dnc0Bub3d3aGVyZTEyMzEzMy5jb20nIHRpdGxlPSdqb2UuYmxvZ2dzQG5vd3doZXJlMTIzMTMzLmNvbScgLz48L2E+ZGQCBw8PFgIfAWhkZAIIDw8WAh8BaGRkAgkPD2QPEBYCZgIBFgIWAh4OUGFyYW1ldGVyVmFsdWUFBjEwMjA0NhYCHxEFBVRvZGF5FgJmZmRkAgsPD2QPEBYBZhYBFgIfEQUGMTAyMDQ2FgFmZGQCDw8PZA8QFgFmFgEWAh8RBQYxMDIwNDYWAWZkZAIJDw8WAh8ABURDb3B5cmlnaHTCqSBRVmlld2VyIDIwMTMgwrcgUGF0ZW50IFBlbmRpbmc8YnIvID5BbGwgUmlnaHRzIFJlc2VydmVkLmRkGAIFHl9fQ29udHJvbHNSZXF1aXJlUG9zdEJhY2tLZXlfXxYBBQ9jdGwwMCRBU1B4TWVudTEFI2N0bDAwJENvbnRlbnRQbGFjZUhvbGRlcjEkR3JpZFZpZXcxDxQrAApkZGRkZGQVAQlDb3VudGVySUQUKwAGFCsAASgpWVN5c3RlbS5JbnQ2NCwgbXNjb3JsaWIsIFZlcnNpb249Mi4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5BjQwNzMwMhQrAAEoKwQGNDA3Mjk5FCsAASgrBAY0MDczMDAUKwABKCsEBjQwNzMwMRQrAAEoKwQGNDA3MzM5FCsAASgrBAY0MDczMzECARQrAAEoKwQGNDA3MzAyZA==" /> </div> <script type="text/javascript"> //<![CDATA[ var theForm = document.forms['aspnetForm']; if (!theForm) { theForm = document.aspnetForm; } function __doPostBack(eventTarget, eventArgument) { if (!theForm.onsubmit || (theForm.onsubmit() != false)) { theForm.__EVENTTARGET.value = eventTarget; theForm.__EVENTARGUMENT.value = eventArgument; theForm.submit(); } } //]]> </script> <script src="/LocalQVApp/WebResource.axd?d=PiLDeZcbBgTBsHQ38Em-6Ia1Nv_D2vE5DKwlbJsghxPDOHtGR5CXLXMK3UDXI7T3Xx1aS52GdDeBzBGU9gGk18esfWA1&t=634208887486707097" type="text/javascript"></script> <script src="/LocalQVApp/ScriptResource.axd?d=z3hwd7w2GblS4QJtD4YTgiw_X4Bca59sk0UzeQvYGO-Ek4iCpwdsVj_G-QJ7XY86W5lM6ejZj_UlxLVH5NxXtPegfSMV6B-uFARnD2uYxMomHldB-EqEZipYCZKSPSt1vB9VHiqwegFvovBfJJ7QYEvi9NE1&t=74c5e9a3" type="text/javascript"></script> <script src="/LocalQVApp/ScriptResource.axd?d=v-RTglOwgC299LXfmSOrz24iNheWhJ8Kxb_By12i1qhs4V-wwLiEvgM6zCRR1iVAwEG0DXfD3DJ84P5KCUk-oYWeQQ5SPVCqAEHWQSsWSr3B3cWOJcFyjG3KZq65vVF29Ea6VMQBkEW4qfse3y8I2EpFy143lK6nbxTStK9y_n_We-4B0&t=6560566" type="text/javascript"></script> <script type="text/javascript"> //<![CDATA[ if (typeof(Sys) === 'undefined') throw new Error('ASP.NET Ajax client-side framework failed to load.'); //]]> </script> <script src="/LocalQVApp/ScriptResource.axd?d=SRd1iTex0uEzulJ1y9xB4XyiBBXW_fxMTKPdamNimBx_rnK3K4Kwp6Ix8W56xG4PleoK7nJkrgM6ukEsrETqgVl0GXOvog4Qo9ubMAUDOLETCVNOvgPKrWaTrs6s-hx52m7ek-gMV8Sdwr0EA00l2kijcS5Da4WN_LmgJnBc6KvgEwek0&t=6560566" type="text/javascript"></script> <script src="/LocalQVApp/ScriptResource.axd?d=RwwA3mTyddCrwxKw7eN_H9A9Jt3S5tkrexoIyYyo8cONrrS7ejnz0hTtXLqTwE5Zh5VjnSvsiHxar1IyQerXY_PYWRYI-IZ6NHt_9AtDaHCQenCBc8QIu_q6JAAS7M509o6j9qSR7oUVJqnGxHlQ6ObqP4NlO-yoGPIMUROKc7xoF9Ni0&t=6560566" type="text/javascript"></script> <script src="/LocalQVApp/WebResource.axd?d=ersxb7aeKc8SmjHHmhWs38H4nA6SsceIO1fGHc_4twgz2p_HxuN8oB6K15VPKJP8xuEZLC4hPr4JDNMwAKE--4rG6Vc1&t=634208887486707097" type="text/javascript"></script> <script type="text/javascript"> //<![CDATA[ function WebForm_OnSubmit() { if (typeof(ValidatorOnSubmit) == "function" && ValidatorOnSubmit() == false) return false; return true; } //]]> </script> <div class="dv001"> <div class="dv002"> <table class="style1"> <tr> <td class="style2"> <a href='http://localhost:58391/LocalQVApp/pages/home' style="border-width:0px;"> <img id="ctl00_Image1" src="../../master_page/images/logo.png" style="border-width:0px;margin-bottom:11px; margin-top:10px;" /></a> </td> <td> </td> <td align="right" style="padding-right: 7px" valign="top"> <table> <tr> <td align="right"> <span id="ctl00_LabelLoginFirstLastName">User1 </span> <input type="submit" name="ctl00$ButtonLogout" value="Logout" id="ctl00_ButtonLogout" /> </td> </tr> <tr> <td align="right"> <span id="ctl00_LabelListType1OrganizationName">CompanyA (102046)</span> <a id="ctl00_LinkButtonListType1Change" href="javascript:__doPostBack('ctl00$LinkButtonListType1Change','')">Change</a> </td> </tr> </table> </td> </tr> </table> <script id="dxis_856180843" src="/LocalQVApp/DXR.axd?r=1_42-HpYh4" type="text/javascript"></script><script id="dxis_467114192" src="/LocalQVApp/DXR.axd?r=1_75-HpYh4" type="text/javascript"></script><script id="dxis_281275125" src="/LocalQVApp/DXR.axd?r=1_68-HpYh4" type="text/javascript"></script><script id="dxis_964008144" src="/LocalQVApp/DXR.axd?r=1_73-HpYh4" type="text/javascript"></script><script id="dxis_1587336794" src="/LocalQVApp/DXR.axd?r=1_58-HpYh4" type="text/javascript"></script><table cellspacing="0" cellpadding="0" id="ctl00_ASPxMenu1" border="0" style="width:933px;border-collapse:collapse;border-collapse:separate;"> <tr> <td class="dxmMenu" valign="top" style="background-color:White;border-color:White;font-family:Arial;font-size:18px;background-image:url(../../master_page/images/menu_headerbg.jpg);border-bottom-color:#CCCCCC;border-bottom-style:Solid;border-bottom-width:1px;"><table cellspacing="0" cellpadding="0" border="0" style="height:100%;border-collapse:collapse;border-collapse:separate;"> <tr> <td id="ctl00_ASPxMenu1_DXI0_T" title="ListType1" class="dxmMenuItem" onclick="aspxMIClick(event, 'ctl00_ASPxMenu1', '0')" style="color:#686872;border-style:None;font-family:Arial;font-size:18px;font-weight:bold;cursor:pointer;"><span style="color:#686872;font-family:Arial;font-size:18px;font-weight:bold;cursor:pointer;">ListType1</span></td><td><div id="ctl00_ASPxMenu1_DXI0_II" class="dxmMenuItemSpacing" style="height:1px;width:40px;overflow:hidden;display:block;"> </div></td><td id="ctl00_ASPxMenu1_DXI1_T" title="ItemB1" class="dxmMenuItem" onclick="aspxMIClick(event, 'ctl00_ASPxMenu1', '1')" style="color:#686872;border-style:None;font-family:Arial;font-size:18px;font-weight:bold;cursor:pointer;"><a title="ItemB1" href="/LocalQVApp/pages/ItemB1/" style="color:#686872;font-family:Arial;font-size:18px;font-weight:bold;">ItemB1</a></td><td><div id="ctl00_ASPxMenu1_DXI1_II" class="dxmMenuItemSpacing" style="height:1px;width:40px;overflow:hidden;display:block;"> </div></td><td id="ctl00_ASPxMenu1_DXI2_T" title="About" class="dxmMenuItem" onclick="aspxMIClick(event, 'ctl00_ASPxMenu1', '2')" style="color:#686872;border-style:None;font-family:Arial;font-size:18px;font-weight:bold;cursor:pointer;"><span style="color:#686872;font-family:Arial;font-size:18px;font-weight:bold;cursor:pointer;">About</span></td> </tr> </table></td> </tr> </table><table id="ctl00_ASPxMenu1_DXM0_" cellspacing="0" cellpadding="0" border="0" style="border-collapse:collapse;border-collapse:separate;position:absolute;left:0px;top:0px;z-index:20000;visibility:hidden;display:none;"> <tr> <td class="dxmSubMenu" style="color:Gray;background-color:#EEEEEE;font-family:Arial;font-size:18px;"><table cellspacing="0" cellpadding="0" border="0" style="border-collapse:collapse;border-collapse:separate;"> <tr id="ctl00_ASPxMenu1_DXI0i0_" onclick="aspxMIClick(event, 'ctl00_ASPxMenu1', '0i0')" style="height:25px;"> <td id="ctl00_ASPxMenu1_DXI0i0_I" title="Select" class="dxmSubMenuGutter dxmSubMenuItemWithImage" style="height:25px;width:16px;cursor:pointer;padding-right:3px!important;border-right:0px!important;"><div style="height:25px;width:16px;overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI0i0_N" title="Select" class="dxmSubMenuItemWithImage dxmSubMenuItemImageSpacing" style="cursor:pointer;"><div style="overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI0i0_T" title="Select" class="dxmSubMenuItemWithImage" style="color:#686872;font-family:Arial;font-size:18px;width:100%;cursor:pointer;border-left:0px!important;padding-left:0px!important;"><a title="Select" href="/LocalQVApp/pages/select/" style="color:#686872;font-family:Arial;font-size:18px;font-weight:bold;">Select</a></td> </tr><tr id="ctl00_ASPxMenu1_DXI0i0_II" class="dxmSubMenuItemSpacing"> <td class="dxmSubMenuGutter" style="cursor:pointer;"></td><td></td><td colspan="1"></td> </tr><tr id="ctl00_ASPxMenu1_DXI0i1_" onclick="aspxMIClick(event, 'ctl00_ASPxMenu1', '0i1')" style="height:25px;"> <td id="ctl00_ASPxMenu1_DXI0i1_I" title="View" class="dxmSubMenuGutter dxmSubMenuItemWithImage" style="height:25px;width:16px;cursor:pointer;padding-right:3px!important;border-right:0px!important;"><div style="height:25px;width:16px;overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI0i1_N" title="View" class="dxmSubMenuItemWithImage dxmSubMenuItemImageSpacing" style="cursor:pointer;"><div style="overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI0i1_T" title="View" class="dxmSubMenuItemWithImage" style="color:#686872;font-family:Arial;font-size:18px;width:100%;cursor:pointer;border-left:0px!important;padding-left:0px!important;"><a title="View" href="/LocalQVApp/pages/view/1/" style="color:#686872;font-family:Arial;font-size:18px;font-weight:bold;">View</a></td> </tr><tr id="ctl00_ASPxMenu1_DXI0i1_II" class="dxmSubMenuItemSpacing"> <td class="dxmSubMenuGutter" style="cursor:pointer;"></td><td></td><td colspan="1"></td> </tr><tr id="ctl00_ASPxMenu1_DXI0i2_" onclick="aspxMIClick(event, 'ctl00_ASPxMenu1', '0i2')" style="height:25px;"> <td id="ctl00_ASPxMenu1_DXI0i2_I" title="Edit/Add Items" class="dxmSubMenuGutter dxmSubMenuItemWithImage" style="height:25px;width:16px;cursor:pointer;padding-right:3px!important;border-right:0px!important;"><div style="height:25px;width:16px;overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI0i2_N" title="Edit/Add Items" class="dxmSubMenuItemWithImage dxmSubMenuItemImageSpacing" style="cursor:pointer;"><div style="overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI0i2_T" title="Edit/Add Items" class="dxmSubMenuItemWithImage" style="color:#686872;font-family:Arial;font-size:18px;width:100%;cursor:pointer;border-left:0px!important;padding-left:0px!important;"><a title="Edit/Add Items" href="/LocalQVApp/pages/edit/" style="color:#686872;font-family:Arial;font-size:18px;font-weight:bold;">Edit/Add Items</a></td> </tr><tr id="ctl00_ASPxMenu1_DXI0i2_II" class="dxmSubMenuItemSpacing"> <td class="dxmSubMenuGutter" style="cursor:pointer;"></td><td></td><td colspan="1"></td> </tr><tr id="ctl00_ASPxMenu1_DXI0i3_" onclick="aspxMIClick(event, 'ctl00_ASPxMenu1', '0i3')" style="height:25px;"> <td id="ctl00_ASPxMenu1_DXI0i3_I" title="Create New" class="dxmSubMenuGutter dxmSubMenuItemWithImage" style="height:25px;width:16px;cursor:pointer;padding-right:3px!important;border-right:0px!important;"><div style="height:25px;width:16px;overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI0i3_N" title="Create New" class="dxmSubMenuItemWithImage dxmSubMenuItemImageSpacing" style="cursor:pointer;"><div style="overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI0i3_T" title="Create New" class="dxmSubMenuItemWithImage" style="color:#686872;font-family:Arial;font-size:18px;width:100%;cursor:pointer;border-left:0px!important;padding-left:0px!important;"><a title="Create New" href="/LocalQVApp/pages/new/" style="color:#686872;font-family:Arial;font-size:18px;font-weight:bold;">Create New</a></td> </tr><tr id="ctl00_ASPxMenu1_DXI0i3_II" class="dxmSubMenuItemSpacing"> <td class="dxmSubMenuGutter" style="cursor:pointer;"></td><td></td><td colspan="1"></td> </tr><tr id="ctl00_ASPxMenu1_DXI0i4_" onclick="aspxMIClick(event, 'ctl00_ASPxMenu1', '0i4')" style="height:25px;"> <td id="ctl00_ASPxMenu1_DXI0i4_I" title="Options" class="dxmSubMenuGutter dxmSubMenuItemWithImage" style="height:25px;width:16px;cursor:pointer;padding-right:3px!important;border-right:0px!important;"><div style="height:25px;width:16px;overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI0i4_N" title="Options" class="dxmSubMenuItemWithImage dxmSubMenuItemImageSpacing" style="cursor:pointer;"><div style="overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI0i4_T" title="Options" class="dxmSubMenuItemWithImage" style="color:#686872;font-family:Arial;font-size:18px;width:100%;cursor:pointer;border-left:0px!important;padding-left:0px!important;"><a title="Options" href="/LocalQVApp/pages/options/" style="color:#686872;font-family:Arial;font-size:18px;font-weight:bold;">Options</a></td> </tr> </table></td> </tr> </table><table id="ctl00_ASPxMenu1_DXM2_" cellspacing="0" cellpadding="0" border="0" style="border-collapse:collapse;border-collapse:separate;position:absolute;left:0px;top:0px;z-index:20000;visibility:hidden;display:none;"> <tr> <td class="dxmSubMenu" style="color:Gray;background-color:#EEEEEE;font-family:Arial;font-size:18px;"><table cellspacing="0" cellpadding="0" border="0" style="border-collapse:collapse;border-collapse:separate;"> <tr id="ctl00_ASPxMenu1_DXI2i0_" onclick="aspxMIClick(event, 'ctl00_ASPxMenu1', '2i0')" style="height:25px;"> <td id="ctl00_ASPxMenu1_DXI2i0_I" title="ItemB2" class="dxmSubMenuGutter dxmSubMenuItemWithImage" style="height:25px;width:16px;cursor:pointer;padding-right:3px!important;border-right:0px!important;"><div style="height:25px;width:16px;overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI2i0_N" title="ItemB2" class="dxmSubMenuItemWithImage dxmSubMenuItemImageSpacing" style="cursor:pointer;"><div style="overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI2i0_T" title="ItemB2" class="dxmSubMenuItemWithImage" style="color:#686872;font-family:Arial;font-size:18px;width:100%;cursor:pointer;border-left:0px!important;padding-left:0px!important;"><a title="ItemB2" href="/LocalQVApp/pages/B2/" style="color:#686872;font-family:Arial;font-size:18px;font-weight:bold;">ItemB2</a></td> </tr><tr id="ctl00_ASPxMenu1_DXI2i0_II" class="dxmSubMenuItemSpacing"> <td class="dxmSubMenuGutter" style="cursor:pointer;"></td><td></td><td colspan="1"></td> </tr><tr id="ctl00_ASPxMenu1_DXI2i1_" onclick="aspxMIClick(event, 'ctl00_ASPxMenu1', '2i1')" style="height:25px;"> <td id="ctl00_ASPxMenu1_DXI2i1_I" title="B3" class="dxmSubMenuGutter dxmSubMenuItemWithImage" style="height:25px;width:16px;cursor:pointer;padding-right:3px!important;border-right:0px!important;"><div style="height:25px;width:16px;overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI2i1_N" title="B3" class="dxmSubMenuItemWithImage dxmSubMenuItemImageSpacing" style="cursor:pointer;"><div style="overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI2i1_T" title="B3" class="dxmSubMenuItemWithImage" style="color:#686872;font-family:Arial;font-size:18px;width:100%;cursor:pointer;border-left:0px!important;padding-left:0px!important;"><a title="B3" href="/LocalQVApp/pages/B3t" style="color:#686872;font-family:Arial;font-size:18px;font-weight:bold;">B3</a></td> </tr><tr id="ctl00_ASPxMenu1_DXI2i1_II" class="dxmSubMenuItemSpacing"> <td class="dxmSubMenuGutter" style="cursor:pointer;"></td><td></td><td colspan="1"></td> </tr><tr id="ctl00_ASPxMenu1_DXI2i2_" onclick="aspxMIClick(event, 'ctl00_ASPxMenu1', '2i2')" style="height:25px;"> <td id="ctl00_ASPxMenu1_DXI2i2_I" title="Get Help" class="dxmSubMenuGutter dxmSubMenuItemWithImage" style="height:25px;width:16px;cursor:pointer;padding-right:3px!important;border-right:0px!important;"><div style="height:25px;width:16px;overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI2i2_N" title="Get Help" class="dxmSubMenuItemWithImage dxmSubMenuItemImageSpacing" style="cursor:pointer;"><div style="overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI2i2_T" title="Get Help" class="dxmSubMenuItemWithImage" style="color:#686872;font-family:Arial;font-size:18px;width:100%;cursor:pointer;border-left:0px!important;padding-left:0px!important;"><a title="Get Help" href="/LocalQVApp/pages/help/" style="color:#686872;font-family:Arial;font-size:18px;font-weight:bold;">Get Help</a></td> </tr><tr id="ctl00_ASPxMenu1_DXI2i2_II" class="dxmSubMenuItemSpacing"> <td class="dxmSubMenuGutter" style="cursor:pointer;"></td><td></td><td colspan="1"></td> </tr><tr id="ctl00_ASPxMenu1_DXI2i3_" onclick="aspxMIClick(event, 'ctl00_ASPxMenu1', '2i3')" style="height:25px;"> <td id="ctl00_ASPxMenu1_DXI2i3_I" title="Contact" class="dxmSubMenuGutter dxmSubMenuItemWithImage" style="height:25px;width:16px;cursor:pointer;padding-right:3px!important;border-right:0px!important;"><div style="height:25px;width:16px;overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI2i3_N" title="Contact" class="dxmSubMenuItemWithImage dxmSubMenuItemImageSpacing" style="cursor:pointer;"><div style="overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI2i3_T" title="Contact" class="dxmSubMenuItemWithImage" style="color:#686872;font-family:Arial;font-size:18px;width:100%;cursor:pointer;border-left:0px!important;padding-left:0px!important;"><a title="Contact" href="/LocalQVApp/pages/contact/" style="color:#686872;font-family:Arial;font-size:18px;font-weight:bold;">Contact</a></td> </tr> </table></td> </tr> </table><script id="dxss_1469099284" type="text/javascript"> <!-- aspxAddHoverItems('ctl00_ASPxMenu1',[[['dxmMenuItemHover','dxmMenuItemHover'],['color:Black;border-style:None;','border-bottom-style:None;border-top-style:None;color:Black;'],['DXI0_','DXI1_','DXI2_'],['I','N','T','P'],[[''],[''],['']],['Img','PImg']],[[''],[''],['DXMST0_','DXMBC0_','DXMST2_','DXMBC2_']],[['dxmSubMenuItemHoverWithImage'],['color:Black;background-color:#CCCCCC;font-weight:bold;'],['DXI0i0_','DXI0i1_','DXI0i2_','DXI0i3_','DXI0i4_','DXI2i0_','DXI2i1_','DXI2i2_','DXI2i3_'],['I','N','T','P'],[[''],[''],[''],[''],[''],[''],[''],[''],['']],['Img','PImg']]]); var dxo = new ASPxClientMenu('ctl00_ASPxMenu1'); window['ctl00_ASPxMenu1'] = dxo; dxo.uniqueID = 'ctl00$ASPxMenu1'; dxo.appearAfter=1; dxo.enableAnimation=false; dxo.shadowVisible=false; dxo.InlineInitialize(); //--> </script> <script type="text/javascript"> //<![CDATA[ Sys.WebForms.PageRequestManager._initialize('ctl00$ContentPlaceHolder1$ScriptManager1', document.getElementById('aspnetForm')); Sys.WebForms.PageRequestManager.getInstance()._updateControls(['tctl00$ContentPlaceHolder1$UpdatePanelAddItems','tctl00$ContentPlaceHolder1$UpdatePanelGridView'], [], [], 90); //]]> </script> <div> <script type="text/javascript"> function fJEditDropDownWithItems(objDropDown) { if (objDropDown.value=='...Edit List') { window.location.replace("../appointment/"); } } </script> <h2> <span id="ctl00_ContentPlaceHolder1_LabelTitle" style="font-weight: 700">CompanyA ListType1 Display</span> </h2> <h3> <span id="ctl00_ContentPlaceHolder1_LabelTitle0" style="font-weight: 700">Add New Item</span> </h3> <div id="ctl00_ContentPlaceHolder1_UpdatePanelAddItems"> <table> <tr> <td> <span id="ctl00_ContentPlaceHolder1_LabelWith" style="font-weight: 700">With</span> </td> <td> <span id="ctl00_ContentPlaceHolder1_LabelDate" style="font-weight: 700">Date</span> </td> <td> <span id="ctl00_ContentPlaceHolder1_LabelTime" style="font-weight: 700">Time</span> </td> <td> </td> <td> <span id="ctl00_ContentPlaceHolder1_LabelAddNameCode">Code</span> </td> <td> <span id="ctl00_ContentPlaceHolder1_LabelAddFirstName" style="font-weight: 700">First Name</span> </td> <td> <span id="ctl00_ContentPlaceHolder1_LabelAddLastName" style="font-weight: 700">Last Name</span> </td> <td> <span id="ctl00_ContentPlaceHolder1_LabelMobile">Mobile</span> </td> <td> <span id="ctl00_ContentPlaceHolder1_LabelEmail">Email</span> </td> <td> </td> </tr> <tr> <td> <select name="ctl00$ContentPlaceHolder1$DropDownListAddWith" id="ctl00_ContentPlaceHolder1_DropDownListAddWith" onclick="fJEditDropDownWithItems(this);"> <option value="Dr Green">Dr Green</option> <option value="Dr Grey">Dr Grey</option> <option value="Dr Hanson">Dr Hanson</option> <option value="Dr Smith">Dr Smith</option> </select> </td> <td> <input name="ctl00$ContentPlaceHolder1$TextBoxAddDate" type="text" value="21/1/2013" id="ctl00_ContentPlaceHolder1_TextBoxAddDate" style="width:88px;" /> </td> <td> <input name="ctl00$ContentPlaceHolder1$TextBoxAddTimeHour" type="text" value="6" maxlength="2" id="ctl00_ContentPlaceHolder1_TextBoxAddTimeHour" style="width:20px;text-align: right" /> : <input name="ctl00$ContentPlaceHolder1$TextBoxAddTimeMinute" type="text" value="30" maxlength="2" id="ctl00_ContentPlaceHolder1_TextBoxAddTimeMinute" style="width:20px;" /> </td> <td> <select name="ctl00$ContentPlaceHolder1$DropDownListAMPM" id="ctl00_ContentPlaceHolder1_DropDownListAMPM"> <option value="0">AM</option> <option selected="selected" value="1">PM</option> </select> </td> <td> <input name="ctl00$ContentPlaceHolder1$TextBoxAddNameCode" type="text" onchange="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$TextBoxAddNameCode\',\'\')', 0)" onkeypress="if (WebForm_TextBoxKeyHandler(event) == false) return false;" id="ctl00_ContentPlaceHolder1_TextBoxAddNameCode" style="width:75px;" /> </td> <td> <input name="ctl00$ContentPlaceHolder1$TextBoxAddFirstName" type="text" id="ctl00_ContentPlaceHolder1_TextBoxAddFirstName" style="width:100px;" /> </td> <td> <input name="ctl00$ContentPlaceHolder1$TextBoxAddLastName" type="text" id="ctl00_ContentPlaceHolder1_TextBoxAddLastName" style="width:100px;" /> </td> <td> <input name="ctl00$ContentPlaceHolder1$TextBoxAddMobile" type="text" id="ctl00_ContentPlaceHolder1_TextBoxAddMobile" style="width:100px;" /> </td> <td> <input name="ctl00$ContentPlaceHolder1$TextBoxAddEmail" type="text" id="ctl00_ContentPlaceHolder1_TextBoxAddEmail" style="width:100px;" /> </td> <td> <input type="submit" name="ctl00$ContentPlaceHolder1$ButtonAdd" value="Add" onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$ContentPlaceHolder1$ButtonAdd", "", true, "AddItem", "", false, false))" id="ctl00_ContentPlaceHolder1_ButtonAdd" style="font-weight: 700" /> </td> </tr> <tr> <td> </td> <td> <span id="ctl00_ContentPlaceHolder1_RequiredFieldValidator1" style="color:Red;display:none;">Required</span> </td> <td> <span id="ctl00_ContentPlaceHolder1_RequiredFieldValidator5" style="color:Red;display:none;">Required</span> <span id="ctl00_ContentPlaceHolder1_RequiredFieldValidator6" style="color:Red;display:none;">Required</span> </td> <td> </td> <td> </td> <td> <span id="ctl00_ContentPlaceHolder1_RequiredFieldValidator3" style="color:Red;display:none;">Required</span> </td> <td> <span id="ctl00_ContentPlaceHolder1_RequiredFieldValidator4" style="color:Red;display:none;">Required</span> </td> <td> </td> <td> <span id="ctl00_ContentPlaceHolder1_RegularExpressionValidatorEmail" style="color:Red;display:none;">Enter a valid email address</span> </td> <td> </td> </tr> </table> </div> <div id="ctl00_ContentPlaceHolder1_UpdatePanelGridView"> <span id="ctl00_ContentPlaceHolder1_TimerGridView" style="visibility:hidden;display:none;"></span> <table style="margin-top: -20px" id="tblExistingItemsFor"> <tr> <td> <h3> <span id="ctl00_ContentPlaceHolder1_LabelExistingtItems" style="font-weight: 700">Show/Edit Items For</span> </h3> </td> <td> <select name="ctl00$ContentPlaceHolder1$DropDownListExistingItemsFor" onchange="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$DropDownListExistingItemsFor\',\'\')', 0)" id="ctl00_ContentPlaceHolder1_DropDownListExistingItemsFor"> <option selected="selected" value="Today">Today</option> <option value="Tomorrow">Tomorrow</option> </select> </td> </tr> </table> <div id="divGridview1" style="padding-right: 15px;"> <div> <table class="aspGridView" cellspacing="0" cellpadding="5" border="0" id="ctl00_ContentPlaceHolder1_GridView1" style="color:#333333;width:935px;border-collapse:collapse;"> <tr style="color:White;background-color:#507CD1;font-weight:bold;"> <th align="left" scope="col">With</th><th align="left" scope="col">Time</th><th align="left" scope="col">First Name</th><th align="left" scope="col">Last Name</th><th align="left" scope="col">Status</th><th align="left" scope="col">Mobile</th><th align="left" scope="col">Email</th><th scope="col"> </th> </tr><tr style="background-color:#EFF3FB;"> <td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl02_Label1">Dr Hanson</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl02_Label2">6:30 P.M.</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl02_Label3">Stevena</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl02_Label4">Andrews</span> </td><td style="background-color:#799ADD;"> <select name="ctl00$ContentPlaceHolder1$GridView1$ctl02$DropDownListApppointmentStatus" onchange="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$GridView1$ctl02$DropDownListApppointmentStatus\',\'\')', 0)" id="ctl00_ContentPlaceHolder1_GridView1_ctl02_DropDownListApppointmentStatus" class="407302"> <option value="Status1">Status1</option> <option selected="selected" value="Status2">Status2</option> </select> </td><td class="CssClsWordBreakable"> </td><td style="width:30px;"> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl02_Label5" style="display:inline-block;width:100px;"></span> </td><td style="height:10px;"><input type="button" value="Edit" onclick="javascript:__doPostBack('ctl00$ContentPlaceHolder1$GridView1','Edit$0')" /></td> </tr><tr style="background-color:White;"> <td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl03_Label1">Dr Green</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl03_Label2">6:30 P.M.</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl03_Label3">Mike</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl03_Label4">Headley</span> </td><td style="background-color:#799ADD;"> <select name="ctl00$ContentPlaceHolder1$GridView1$ctl03$DropDownListApppointmentStatus" onchange="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$GridView1$ctl03$DropDownListApppointmentStatus\',\'\')', 0)" id="ctl00_ContentPlaceHolder1_GridView1_ctl03_DropDownListApppointmentStatus" class="407299"> <option selected="selected" value="Status1">Status1</option> <option value="Status2">Status2</option> </select> </td><td class="CssClsWordBreakable">6427432034</td><td style="width:30px;"><a href='mailto:mike.headley@hotmail.com' ><img src='http://localhost:58391/LocalQVApp/pages/edit/images/icon_email.png' border=0 alt='mike.headley@hotmail.com' title='mike.headley@hotmail.com' /></a></td><td style="height:10px;"><input type="button" value="Edit" onclick="javascript:__doPostBack('ctl00$ContentPlaceHolder1$GridView1','Edit$1')" /></td> </tr><tr style="background-color:#EFF3FB;"> <td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl04_Label1">Dr Smith</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl04_Label2">6:00 P.M.</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl04_Label3">Joe</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl04_Label4">Gregory</span> </td><td style="background-color:#799ADD;"> <select name="ctl00$ContentPlaceHolder1$GridView1$ctl04$DropDownListApppointmentStatus" onchange="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$GridView1$ctl04$DropDownListApppointmentStatus\',\'\')', 0)" id="ctl00_ContentPlaceHolder1_GridView1_ctl04_DropDownListApppointmentStatus" class="407300"> <option selected="selected" value="Status1">Status1</option> <option value="Status2">Status2</option> </select> </td><td class="CssClsWordBreakable">6427098979</td><td style="width:30px;"><a href='mailto:jg@greenclean.com' ><img src='http://localhost:58391/LocalQVApp/pages/edit/images/icon_email.png' border=0 alt='jg@greenclean.com' title='jg@greenclean.com' /></a></td><td style="height:10px;"><input type="button" value="Edit" onclick="javascript:__doPostBack('ctl00$ContentPlaceHolder1$GridView1','Edit$2')" /></td> </tr><tr style="background-color:White;"> <td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl05_Label1">Dr Hanson</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl05_Label2">6:00 P.M.</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl05_Label3">Gary</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl05_Label4">Steade</span> </td><td style="background-color:#799ADD;"> <select name="ctl00$ContentPlaceHolder1$GridView1$ctl05$DropDownListApppointmentStatus" onchange="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$GridView1$ctl05$DropDownListApppointmentStatus\',\'\')', 0)" id="ctl00_ContentPlaceHolder1_GridView1_ctl05_DropDownListApppointmentStatus" class="407301"> <option selected="selected" value="Status1">Status1</option> <option value="Status2">Status2</option> </select> </td><td class="CssClsWordBreakable"> </td><td style="width:30px;"> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl05_Label5" style="display:inline-block;width:100px;"></span> </td><td style="height:10px;"><input type="button" value="Edit" onclick="javascript:__doPostBack('ctl00$ContentPlaceHolder1$GridView1','Edit$3')" /></td> </tr><tr style="background-color:#EFF3FB;"> <td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl06_Label1">Dr Green</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl06_Label2">10:30 A.M.</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl06_Label3">Mike</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl06_Label4">Green</span> </td><td style="background-color:#799ADD;"> <select name="ctl00$ContentPlaceHolder1$GridView1$ctl06$DropDownListApppointmentStatus" onchange="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$GridView1$ctl06$DropDownListApppointmentStatus\',\'\')', 0)" id="ctl00_ContentPlaceHolder1_GridView1_ctl06_DropDownListApppointmentStatus" class="407339"> <option selected="selected" value="Status1">Status1</option> <option value="Status2">Status2</option> </select> </td><td class="CssClsWordBreakable"> </td><td style="width:30px;"> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl06_Label5" style="display:inline-block;width:100px;"></span> </td><td style="height:10px;"><input type="button" value="Edit" onclick="javascript:__doPostBack('ctl00$ContentPlaceHolder1$GridView1','Edit$4')" /></td> </tr><tr style="background-color:White;"> <td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl07_Label1">Dr Green</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl07_Label2">9:30 A.M.</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl07_Label3">Joe</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl07_Label4">Bloggs</span> </td><td style="background-color:#799ADD;"> <select name="ctl00$ContentPlaceHolder1$GridView1$ctl07$DropDownListApppointmentStatus" onchange="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$GridView1$ctl07$DropDownListApppointmentStatus\',\'\')', 0)" id="ctl00_ContentPlaceHolder1_GridView1_ctl07_DropDownListApppointmentStatus" class="407331"> <option selected="selected" value="Status1">Status1</option> <option value="Status2">Status2</option> </select> </td><td class="CssClsWordBreakable">123123123</td><td style="width:30px;"><a href='mailto:joe.bloggs@nowwhere123133.com' ><img src='http://localhost:58391/LocalQVApp/pages/edit/images/icon_email.png' border=0 alt='joe.bloggs@nowwhere123133.com' title='joe.bloggs@nowwhere123133.com' /></a></td><td style="height:10px;"><input type="button" value="Edit" onclick="javascript:__doPostBack('ctl00$ContentPlaceHolder1$GridView1','Edit$5')" /></td> </tr> </table> </div> <input type="hidden" name="ctl00$ContentPlaceHolder1$HiddenFieldLoadingNameCodeValues" id="ctl00_ContentPlaceHolder1_HiddenFieldLoadingNameCodeValues" value="0" /> <input type="hidden" name="ctl00$ContentPlaceHolder1$HiddenFieldListType1Number" id="ctl00_ContentPlaceHolder1_HiddenFieldListType1Number" value="102046" /> <input type="hidden" name="ctl00$ContentPlaceHolder1$HiddenFieldGridUpdatingCounterID" id="ctl00_ContentPlaceHolder1_HiddenFieldGridUpdatingCounterID" /> <input type="hidden" name="ctl00$ContentPlaceHolder1$HiddenFieldGridUpdatingDateTime" id="ctl00_ContentPlaceHolder1_HiddenFieldGridUpdatingDateTime" /> <input type="hidden" name="ctl00$ContentPlaceHolder1$HiddenFieldLastUpdatedDateTimeOldValue" id="ctl00_ContentPlaceHolder1_HiddenFieldLastUpdatedDateTimeOldValue" value="0" /> </div> </div> </div> <hr /><table class="style1"> <tr> <td align="center"> <span id="ctl00_LabelFooterText1">Copyright<br/ >All Rights Reserved.</span> </td> </tr> </table> </div> </div> <script type="text/javascript"> //<![CDATA[ var Page_Validators = new Array(document.getElementById("ctl00_ContentPlaceHolder1_RequiredFieldValidator1"), document.getElementById("ctl00_ContentPlaceHolder1_RequiredFieldValidator5"), document.getElementById("ctl00_ContentPlaceHolder1_RequiredFieldValidator6"), document.getElementById("ctl00_ContentPlaceHolder1_RequiredFieldValidator3"), document.getElementById("ctl00_ContentPlaceHolder1_RequiredFieldValidator4"), document.getElementById("ctl00_ContentPlaceHolder1_RegularExpressionValidatorEmail")); //]]> </script> <script type="text/javascript"> //<![CDATA[ var ctl00_ContentPlaceHolder1_RequiredFieldValidator1 = document.all ? document.all["ctl00_ContentPlaceHolder1_RequiredFieldValidator1"] : document.getElementById("ctl00_ContentPlaceHolder1_RequiredFieldValidator1"); ctl00_ContentPlaceHolder1_RequiredFieldValidator1.controltovalidate = "ctl00_ContentPlaceHolder1_TextBoxAddDate"; ctl00_ContentPlaceHolder1_RequiredFieldValidator1.focusOnError = "t"; ctl00_ContentPlaceHolder1_RequiredFieldValidator1.errormessage = "Required"; ctl00_ContentPlaceHolder1_RequiredFieldValidator1.display = "Dynamic"; ctl00_ContentPlaceHolder1_RequiredFieldValidator1.validationGroup = "AddItem"; ctl00_ContentPlaceHolder1_RequiredFieldValidator1.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid"; ctl00_ContentPlaceHolder1_RequiredFieldValidator1.initialvalue = ""; var ctl00_ContentPlaceHolder1_RequiredFieldValidator5 = document.all ? document.all["ctl00_ContentPlaceHolder1_RequiredFieldValidator5"] : document.getElementById("ctl00_ContentPlaceHolder1_RequiredFieldValidator5"); ctl00_ContentPlaceHolder1_RequiredFieldValidator5.controltovalidate = "ctl00_ContentPlaceHolder1_TextBoxAddTimeHour"; ctl00_ContentPlaceHolder1_RequiredFieldValidator5.focusOnError = "t"; ctl00_ContentPlaceHolder1_RequiredFieldValidator5.errormessage = "Required"; ctl00_ContentPlaceHolder1_RequiredFieldValidator5.display = "Dynamic"; ctl00_ContentPlaceHolder1_RequiredFieldValidator5.validationGroup = "AddItem"; ctl00_ContentPlaceHolder1_RequiredFieldValidator5.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid"; ctl00_ContentPlaceHolder1_RequiredFieldValidator5.initialvalue = ""; var ctl00_ContentPlaceHolder1_RequiredFieldValidator6 = document.all ? document.all["ctl00_ContentPlaceHolder1_RequiredFieldValidator6"] : document.getElementById("ctl00_ContentPlaceHolder1_RequiredFieldValidator6"); ctl00_ContentPlaceHolder1_RequiredFieldValidator6.controltovalidate = "ctl00_ContentPlaceHolder1_TextBoxAddTimeMinute"; ctl00_ContentPlaceHolder1_RequiredFieldValidator6.focusOnError = "t"; ctl00_ContentPlaceHolder1_RequiredFieldValidator6.errormessage = "Required"; ctl00_ContentPlaceHolder1_RequiredFieldValidator6.display = "Dynamic"; ctl00_ContentPlaceHolder1_RequiredFieldValidator6.validationGroup = "AddItem"; ctl00_ContentPlaceHolder1_RequiredFieldValidator6.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid"; ctl00_ContentPlaceHolder1_RequiredFieldValidator6.initialvalue = ""; var ctl00_ContentPlaceHolder1_RequiredFieldValidator3 = document.all ? document.all["ctl00_ContentPlaceHolder1_RequiredFieldValidator3"] : document.getElementById("ctl00_ContentPlaceHolder1_RequiredFieldValidator3"); ctl00_ContentPlaceHolder1_RequiredFieldValidator3.controltovalidate = "ctl00_ContentPlaceHolder1_TextBoxAddFirstName"; ctl00_ContentPlaceHolder1_RequiredFieldValidator3.focusOnError = "t"; ctl00_ContentPlaceHolder1_RequiredFieldValidator3.errormessage = "Required"; ctl00_ContentPlaceHolder1_RequiredFieldValidator3.display = "Dynamic"; ctl00_ContentPlaceHolder1_RequiredFieldValidator3.validationGroup = "AddItem"; ctl00_ContentPlaceHolder1_RequiredFieldValidator3.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid"; ctl00_ContentPlaceHolder1_RequiredFieldValidator3.initialvalue = ""; var ctl00_ContentPlaceHolder1_RequiredFieldValidator4 = document.all ? document.all["ctl00_ContentPlaceHolder1_RequiredFieldValidator4"] : document.getElementById("ctl00_ContentPlaceHolder1_RequiredFieldValidator4"); ctl00_ContentPlaceHolder1_RequiredFieldValidator4.controltovalidate = "ctl00_ContentPlaceHolder1_TextBoxAddLastName"; ctl00_ContentPlaceHolder1_RequiredFieldValidator4.focusOnError = "t"; ctl00_ContentPlaceHolder1_RequiredFieldValidator4.errormessage = "Required"; ctl00_ContentPlaceHolder1_RequiredFieldValidator4.display = "Dynamic"; ctl00_ContentPlaceHolder1_RequiredFieldValidator4.validationGroup = "AddItem"; ctl00_ContentPlaceHolder1_RequiredFieldValidator4.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid"; ctl00_ContentPlaceHolder1_RequiredFieldValidator4.initialvalue = ""; var ctl00_ContentPlaceHolder1_RegularExpressionValidatorEmail = document.all ? document.all["ctl00_ContentPlaceHolder1_RegularExpressionValidatorEmail"] : document.getElementById("ctl00_ContentPlaceHolder1_RegularExpressionValidatorEmail"); ctl00_ContentPlaceHolder1_RegularExpressionValidatorEmail.controltovalidate = "ctl00_ContentPlaceHolder1_TextBoxAddEmail"; ctl00_ContentPlaceHolder1_RegularExpressionValidatorEmail.focusOnError = "t"; ctl00_ContentPlaceHolder1_RegularExpressionValidatorEmail.errormessage = "Enter a valid email address"; ctl00_ContentPlaceHolder1_RegularExpressionValidatorEmail.display = "Dynamic"; ctl00_ContentPlaceHolder1_RegularExpressionValidatorEmail.validationGroup = "AddItem"; ctl00_ContentPlaceHolder1_RegularExpressionValidatorEmail.evaluationfunction = "RegularExpressionValidatorEvaluateIsValid"; ctl00_ContentPlaceHolder1_RegularExpressionValidatorEmail.validationexpression = "\\w+([-+.\']\\w+)*@\\w+([-.]\\w+)*\\.\\w+([-.]\\w+)*"; //]]> </script> <script type="text/javascript"> //<![CDATA[ var Page_ValidationActive = false; if (typeof(ValidatorOnLoad) == "function") { ValidatorOnLoad(); } function ValidatorOnSubmit() { if (Page_ValidationActive) { return ValidatorCommonOnSubmit(); } else { return true; } } WebForm_AutoFocus('ctl00_ContentPlaceHolder1_TextBoxAddNameCode');Sys.Application.initialize(); document.getElementById('ctl00_ContentPlaceHolder1_RequiredFieldValidator1').dispose = function() { Array.remove(Page_Validators, document.getElementById('ctl00_ContentPlaceHolder1_RequiredFieldValidator1')); } document.getElementById('ctl00_ContentPlaceHolder1_RequiredFieldValidator5').dispose = function() { Array.remove(Page_Validators, document.getElementById('ctl00_ContentPlaceHolder1_RequiredFieldValidator5')); } document.getElementById('ctl00_ContentPlaceHolder1_RequiredFieldValidator6').dispose = function() { Array.remove(Page_Validators, document.getElementById('ctl00_ContentPlaceHolder1_RequiredFieldValidator6')); } document.getElementById('ctl00_ContentPlaceHolder1_RequiredFieldValidator3').dispose = function() { Array.remove(Page_Validators, document.getElementById('ctl00_ContentPlaceHolder1_RequiredFieldValidator3')); } document.getElementById('ctl00_ContentPlaceHolder1_RequiredFieldValidator4').dispose = function() { Array.remove(Page_Validators, document.getElementById('ctl00_ContentPlaceHolder1_RequiredFieldValidator4')); } document.getElementById('ctl00_ContentPlaceHolder1_RegularExpressionValidatorEmail').dispose = function() { Array.remove(Page_Validators, document.getElementById('ctl00_ContentPlaceHolder1_RegularExpressionValidatorEmail')); } Sys.Application.add_init(function() { $create(Sys.UI._Timer, {"enabled":true,"interval":30000,"uniqueID":"ctl00$ContentPlaceHolder1$TimerGridView"}, null, null, $get("ctl00_ContentPlaceHolder1_TimerGridView")); }); //]]> </script> </form> </body> </html> ==== Remote HTML ==== <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head><link rel="stylesheet" type="text/css" href="/s/qv/DXR.axd?r=1_3-9uXh4" /><link rel="stylesheet" type="text/css" href="/s/qv/DXR.axd?r=1_4-9uXh4" /><link rel="stylesheet" type="text/css" href="/s/qv/DXR.axd?r=1_2-9uXh4" /><title> QVApp.com | CompanyA | Edit/Add Items </title> <link href="styles/StyleSheetGridView.css" rel="stylesheet" type="text/css" /> <style type="text/css"> .style1 { width: 945px; } .dxmMenu, .dxmVerticalMenu { font: 9pt Tahoma; color: black; background-color: #F0F0F0; border: solid 1px #A8A8A8; padding: 2px 2px 2px 2px; } .dxmMenuItem, .dxmMenuItemWithImage { padding-top: 4px; padding-right: 8px; padding-bottom: 5px; padding-left: 8px; } .dxmMenuItem, .dxmMenuItemWithImage, .dxmMenuItemWithPopOutImage, .dxmMenuItemWithImageWithPopOutImage, .dxmVerticalMenuItem, .dxmVerticalMenuItemWithImage, .dxmVerticalMenuItemWithPopOutImage, .dxmVerticalMenuItemWithImageWithPopOutImage, .dxmMenuLargeItem, .dxmMenuLargeItemWithImage, .dxmMenuLargeItemWithPopOutImage, .dxmMenuLargeItemWithImageWithPopOutImage, .dxmVerticalMenuLargeItem, .dxmVerticalMenuLargeItemWithImage, .dxmVerticalMenuLargeItemWithPopOutImage, .dxmVerticalMenuLargeItemWithImageWithPopOutImage { font: 9pt Tahoma; color: black; white-space: nowrap; } .style2 { font-size: xx-large; font-weight: bold; } .style3 { color: #999999; } </style> <link href="../../master_page/styles/MasterPage.css" rel="stylesheet" type="text/css" /><link href="../../../App_Themes/Theme1/StyleSheet.css" type="text/css" rel="stylesheet" /><style type="text/css"> #ctl00_ASPxMenu1 a:visited { font-family:Arial!important;font-weight:bold!important; } #ctl00_ASPxMenu1_DXM0_ a:visited { font-family:Arial!important;font-weight:bold!important; } #ctl00_ASPxMenu1_DXM0i0_ a:visited { font-family:Arial!important;font-weight:bold!important; } #ctl00_ASPxMenu1_DXM0i1_ a:visited { font-family:Arial!important;font-weight:bold!important; } #ctl00_ASPxMenu1_DXM0i2_ a:visited { font-family:Arial!important;font-weight:bold!important; } #ctl00_ASPxMenu1_DXM0i3_ a:visited { font-family:Arial!important;font-weight:bold!important; } #ctl00_ASPxMenu1_DXM0i4_ a:visited { font-family:Arial!important;font-weight:bold!important; } #ctl00_ASPxMenu1_DXM1_ a:visited { font-family:Arial!important;font-weight:bold!important; } #ctl00_ASPxMenu1_DXM2_ a:visited { font-family:Arial!important;font-weight:bold!important; } #ctl00_ASPxMenu1_DXM2i0_ a:visited { font-family:Arial!important;font-weight:bold!important; } #ctl00_ASPxMenu1_DXM2i1_ a:visited { font-family:Arial!important;font-weight:bold!important; } #ctl00_ASPxMenu1_DXM2i2_ a:visited { font-family:Arial!important;font-weight:bold!important; } #ctl00_ASPxMenu1_DXM2i3_ a:visited { font-family:Arial!important;font-weight:bold!important; } </style></head> <body onload="fViewPCJSetPanelUpdateTimers();"> <form name="aspnetForm" method="post" action="default.aspx" onsubmit="javascript:return WebForm_OnSubmit();" id="aspnetForm"> <div> <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" /> <input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" /> <input type="hidden" name="__LASTFOCUS" id="__LASTFOCUS" value="" /> <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKLTYwNjIwMTQ0Mw9kFgJmD2QWAgIDD2QWDAIBDw8WAh4EVGV4dAUTTWFyayBCcm93bmxlZSZuYnNwO2RkAgMPDxYEHwAFIldoaXRlY3Jvc3MgTWVkaWNhbCBDZW50ZXIgKDEwMjA0NikeB1Zpc2libGVnZGQCBA8PFgIfAWdkZAIFDzwrAAkCAA8WBB4OXyFVc2VWaWV3U3RhdGVnHg9EYXRhU291cmNlQm91bmRnZAYPFgIeCklzU2F2ZWRBbGxnDxQrAAM8KwAMAgAWCB8ABQVRdWV1ZR4HVG9vbFRpcAUFUXVldWUeDlJ1bnRpbWVDcmVhdGVkZx4IRGF0YVBhdGgFJDczYmI0NTlmLTEwNTAtNDYxMy04ZjFmLTkwZWUzMTM3ODQ3MAEPZBAWBWYCAQICAgMCBBYFPCsADAEAFgweC05hdmlnYXRlVXJsBRUvcy9xdi9wYWdlcy9xL3NlbGVjdC8fAAUGU2VsZWN0HwUFBlNlbGVjdB4ETmFtZQULUXVldWVTZWxlY3QfBmcfBwUVL3MvcXYvcGFnZXMvcS9zZWxlY3QvPCsADAEAFgwfCAUWL3MvcXYvcGFnZXMvcS92aWV3L3BjLx8ABQRWaWV3HwUFBFZpZXcfCQUEVmlldx8GZx8HBRYvcy9xdi9wYWdlcy9xL3ZpZXcvcGMvPCsADAEAFgofCAUTL3MvcXYvcGFnZXMvcS9lZGl0Lx8ABQ5FZGl0L0FkZCBJdGVtcx8FBQ5FZGl0L0FkZCBJdGVtcx8GZx8HBRMvcy9xdi9wYWdlcy9xL2VkaXQvPCsADAEAFgwfCAUSL3MvcXYvcGFnZXMvcS9uZXcvHwAFCkNyZWF0ZSBOZXcfBQUKQ3JlYXRlIE5ldx8JBQhRdWV1ZU5ldx8GZx8HBRIvcy9xdi9wYWdlcy9xL25ldy88KwAMAQAWCh8IBRYvcy9xdi9wYWdlcy9xL29wdGlvbnMvHwAFB09wdGlvbnMfBQUHT3B0aW9ucx8GZx8HBRYvcy9xdi9wYWdlcy9xL29wdGlvbnMvZDwrAAwBABYKHwgFFS9zL3F2L3BhZ2VzL2hhcmR3YXJlLx8ABQhIYXJkd2FyZR8FBQhIYXJkd2FyZR8GZx8HBRUvcy9xdi9wYWdlcy9oYXJkd2FyZS88KwAMAgAWCB8ABQVBYm91dB8FBQVBYm91dB8GZx8HBSQxYjBhMzAxOS1kODNhLTQ1MjQtOWEyNy0yMDc5ZjI5ZmRmZDEBD2QQFgRmAgECAgIDFgQ8KwAMAQAWCh8IBRAvcy9xdi9wYWdlcy93aHkvHwAFDFdoeSBRVmlld2VyPx8FBQxXaHkgUVZpZXdlcj8fBmcfBwUQL3MvcXYvcGFnZXMvd2h5LzwrAAwBABYKHwgFHS9zL3F2L3BhZ2VzL2NlcnRpZmllZHBhcnRuZXJzHwAFEkNlcnRpZmllZCBQYXJ0bmVycx8FBRJDZXJ0aWZpZWQgUGFydG5lcnMfBmcfBwUdL3MvcXYvcGFnZXMvY2VydGlmaWVkcGFydG5lcnM8KwAMAQAWCh8IBREvcy9xdi9wYWdlcy9oZWxwLx8ABQhHZXQgSGVscB8FBQhHZXQgSGVscB8GZx8HBREvcy9xdi9wYWdlcy9oZWxwLzwrAAwBABYKHwgFFC9zL3F2L3BhZ2VzL2NvbnRhY3QvHwAFB0NvbnRhY3QfBQUHQ29udGFjdB8GZx8HBRQvcy9xdi9wYWdlcy9jb250YWN0L2RkZAIHD2QWBgIDDw8WAh8ABSdXaGl0ZWNyb3NzIE1lZGljYWwgQ2VudGVyIFF1ZXVlIERpc3BsYXlkZAIJD2QWAmYPZBYCAhEPEA8WAh4LXyFEYXRhQm91bmRnZBAVBQhEciBCcm93bglEciBEZW55ZXIJRHIgR3JhaGFtB0RyIEdyZXkMLi4uRWRpdCBMaXN0FQUIRHIgQnJvd24JRHIgRGVueWVyCURyIEdyYWhhbQdEciBHcmV5DC4uLkVkaXQgTGlzdBQrAwVnZ2dnZ2RkAgsPZBYCZg9kFggCBw88KwANAgAPFgYeDUVtcHR5RGF0YVRleHQFFU5vIGl0ZW1zIGVudGVyZWQgeWV0Lh8KZx4LXyFJdGVtQ291bnQCBmQBEBYCAgYCCxYCPCsABQEAFgIeCkhlYWRlclRleHQFBFRpbWU8KwAFAQEWBB4FV2lkdGgbAAAAAAAAPkABAAAAHgRfIVNCAoACFgICBgIGFgJmD2QWEAIBD2QWDgIFD2QWAgIBDw8WAh8ABQhEciBCcm93bmRkAgYPZBYCAgEPDxYCHwAFBzY6MDAgUE1kZAIHD2QWAgIBDw8WAh8ABQZBbmdlbGFkZAIID2QWAgIBDw8WAh8ABQNXb2hkZAIJD2QWAgIBDxAPFgYeCENzc0NsYXNzBQY0MDczMDMfCmcfDwICZBAVBQdXYWl0aW5nDkluIEFwcG9pbnRtZW50CEZpbmlzaGVkCUNhbmNlbGxlZAZEZWxldGUVBQdXYWl0aW5nDkluIEFwcG9pbnRtZW50CEZpbmlzaGVkCUNhbmNlbGxlZAZEZWxldGUUKwMFZ2dnZ2cWAWZkAgoPDxYCHwAFBiZuYnNwO2RkAgsPZBYCAgEPDxYCHwBlZGQCAg9kFg4CBQ9kFgICAQ8PFgIfAAUIRHIgQnJvd25kZAIGD2QWAgIBDw8WAh8ABQc1OjQ1IFBNZGQCBw9kFgICAQ8PFgIfAAUETWFyeWRkAggPZBYCAgEPDxYCHwAFCENoYW5kbGVyZGQCCQ9kFgICAQ8QDxYGHxAFBjQwNzI5OB8KZx8PAgJkEBUFB1dhaXRpbmcOSW4gQXBwb2ludG1lbnQIRmluaXNoZWQJQ2FuY2VsbGVkBkRlbGV0ZRUFB1dhaXRpbmcOSW4gQXBwb2ludG1lbnQIRmluaXNoZWQJQ2FuY2VsbGVkBkRlbGV0ZRQrAwVnZ2dnZxYBZmQCCg8PFgIfAAUKNjQyMTk4Mzk0NGRkAgsPDxYCHwAFvAE8YSBocmVmPSdtYWlsdG86bWFyeS5jaGFuZGxlckBnbWFpbC5jb20nID48aW1nIHNyYz0naHR0cDovL3d3dy5RVmlld2VyLmNvbS9wYWdlcy9xL2VkaXQvaW1hZ2VzL2ljb25fZW1haWwucG5nJyBib3JkZXI9MCBhbHQ9J21hcnkuY2hhbmRsZXJAZ21haWwuY29tJyB0aXRsZT0nbWFyeS5jaGFuZGxlckBnbWFpbC5jb20nIC8+PC9hPmRkAgMPZBYOAgUPZBYCAgEPDxYCHwAFB0RyIEdyZXlkZAIGD2QWAgIBDw8WAh8ABQc1OjMwIFBNZGQCBw9kFgICAQ8PFgIfAAUGU3RldmVuZGQCCA9kFgICAQ8PFgIfAAUHQW5kcmV3c2RkAgkPZBYCAgEPEA8WBh8QBQY0MDczMDIfCmcfDwICZBAVBQdXYWl0aW5nDkluIEFwcG9pbnRtZW50CEZpbmlzaGVkCUNhbmNlbGxlZAZEZWxldGUVBQdXYWl0aW5nDkluIEFwcG9pbnRtZW50CEZpbmlzaGVkCUNhbmNlbGxlZAZEZWxl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" /> </div> <script type="text/javascript"> //<![CDATA[ var theForm = document.forms['aspnetForm']; if (!theForm) { theForm = document.aspnetForm; } function __doPostBack(eventTarget, eventArgument) { if (!theForm.onsubmit || (theForm.onsubmit() != false)) { theForm.__EVENTTARGET.value = eventTarget; theForm.__EVENTARGUMENT.value = eventArgument; theForm.submit(); } } //]]> </script> <script src="/s/qv/WebResource.axd?d=gL-v-E94ZIEM_IzanntB836TrZzP_YMsVXNDnTif_I6FIm5XJJbNzh7ogWt-WfEm-iwvUT_Dok6NRUWmnDktHUMF4ak1&t=634605258834856163" type="text/javascript"></script> <script src="/s/qv/ScriptResource.axd?d=1iNZ0BvYJDsL0NkqrpJuyntvEtwSnf4Wx0rVgZLIZAint-Zk1OqEWBQrjCcvZjd1A1jOY9qtkBplaPFXSlCu05CFMGuVoQMB8Pu5KiuokqhbjEyXWRggocnHJJS9rXKn3zDAzkEq-B3eOIfFef_qigxJBwg1&t=ffffffffc544f4f5" type="text/javascript"></script> <script src="/s/qv/ScriptResource.axd?d=qdmy9OZClmCbOMstYLfDwMDpLBQzb9JPg-R1Pgrm53YdypZRySLJ4J6QtQpJn6YXG4DjONdq4DmT2P7heYhpJ78D1cTh7VV0CNlUcr0iKJv2Y92GQ4T6TqP_vV-Ws_ME82ilh6LNbgEZlIoJsP07jbzpB1u2NKaXuu4_75_5O0LRRMg30&t=efc0c6" type="text/javascript"></script> <script type="text/javascript"> //<![CDATA[ if (typeof(Sys) === 'undefined') throw new Error('ASP.NET Ajax client-side framework failed to load.'); //]]> </script> <script src="/s/qv/ScriptResource.axd?d=1_UGXHgSBJ532-AuOBbHo4ly3ZrzdAubWiBjPiapyeBG-Pg6yIJ0xZtjrMcio_yxdAOn7wlnyNMjalh-IRkpOuBHugGA9nmAEQAqO3HoW57twJNnlCyOBPbgEQ3l4VAI3UXKnrQ9akzK82VPHl1jcr_Nx4dtkfJSwbylEle6Fjx7vz8r0&t=efc0c6" type="text/javascript"></script> <script src="/s/qv/ScriptResource.axd?d=u1V5bDNbOFq0VcNupJ5IOjhQoAz7NQgLbeHAIaBfiaTIMFOqPrGNbGPp9wJOH9X1cnauoHv6Q93kuyLRT7yIECadyH9R2PFn5m09lHWDUtTHwjcS7hXr7tFFbw2xN0FMnm_0kC7PlhDCGkU5XKHrXCFHqT1cRGgK-DBa61rApdZ_QEC40&t=efc0c6" type="text/javascript"></script> <script src="/s/qv/WebResource.axd?d=4UUfCOPH3gImRviKWtfi2wadODK8AhXrrp6vwep_lvGu261Ds3NooXExZLQewnguO4SL2JQ1U_4g-sr9biSq1-O-71U1&t=634605258834856163" type="text/javascript"></script> <script type="text/javascript"> //<![CDATA[ function WebForm_OnSubmit() { if (typeof(ValidatorOnSubmit) == "function" && ValidatorOnSubmit() == false) return false; return true; } //]]> </script> <div class="dv001"> <div class="dv002"> <table class="style1"> <tr> <td class="style2"> <a href='http://www.QVApp.com/pages/home' style="border-width:0px;"> <img id="ctl00_Image1" src="../../master_page/images/logo.png" style="border-width:0px;margin-bottom:11px; margin-top:10px;" /></a> </td> <td> </td> <td align="right" style="padding-right: 7px" valign="top"> <table> <tr> <td align="right"> <span id="ctl00_LabelLoginFirstLastName">User1 </span> <input type="submit" name="ctl00$ButtonLogout" value="Logout" id="ctl00_ButtonLogout" /> </td> </tr> <tr> <td align="right"> <span id="ctl00_LabelListType1OrganizationName">CompanyA (102046)</span> <a id="ctl00_LinkButtonListType1Change" href="javascript:__doPostBack('ctl00$LinkButtonListType1Change','')">Change</a> </td> </tr> </table> </td> </tr> </table> <script id="dxis_183758183" src="/s/qv/DXR.axd?r=1_42-9uXh4" type="text/javascript"></script><script id="dxis_1126455906" src="/s/qv/DXR.axd?r=1_75-9uXh4" type="text/javascript"></script><script id="dxis_1608987849" src="/s/qv/DXR.axd?r=1_68-9uXh4" type="text/javascript"></script><script id="dxis_94001762" src="/s/qv/DXR.axd?r=1_73-9uXh4" type="text/javascript"></script><script id="dxis_546944984" src="/s/qv/DXR.axd?r=1_58-9uXh4" type="text/javascript"></script><table cellspacing="0" cellpadding="0" id="ctl00_ASPxMenu1" border="0" style="width:933px;border-collapse:collapse;border-collapse:separate;"> <tr> <td class="dxmMenu" valign="top" style="background-color:White;border-color:White;font-family:Arial;font-size:18px;background-image:url(../../master_page/images/menu_headerbg.jpg);border-bottom-color:#CCCCCC;border-bottom-style:Solid;border-bottom-width:1px;"><table cellspacing="0" cellpadding="0" border="0" style="height:100%;border-collapse:collapse;border-collapse:separate;"> <tr> <td id="ctl00_ASPxMenu1_DXI0_T" title="ListType1" class="dxmMenuItem" onclick="aspxMIClick(event, 'ctl00_ASPxMenu1', '0')" style="color:#686872;border-style:None;font-family:Arial;font-size:18px;font-weight:bold;cursor:pointer;"><span style="color:#686872;font-family:Arial;font-size:18px;font-weight:bold;cursor:pointer;">ListType1</span></td><td><div id="ctl00_ASPxMenu1_DXI0_II" class="dxmMenuItemSpacing" style="height:1px;width:40px;overflow:hidden;display:block;"> </div></td><td id="ctl00_ASPxMenu1_DXI1_T" title="ItemB1" class="dxmMenuItem" onclick="aspxMIClick(event, 'ctl00_ASPxMenu1', '1')" style="color:#686872;border-style:None;font-family:Arial;font-size:18px;font-weight:bold;cursor:pointer;"><a title="ItemB1" href="/s/qv/pages/ItemB1/" style="color:#686872;font-family:Arial;font-size:18px;font-weight:bold;">ItemB1</a></td><td><div id="ctl00_ASPxMenu1_DXI1_II" class="dxmMenuItemSpacing" style="height:1px;width:40px;overflow:hidden;display:block;"> </div></td><td id="ctl00_ASPxMenu1_DXI2_T" title="About" class="dxmMenuItem" onclick="aspxMIClick(event, 'ctl00_ASPxMenu1', '2')" style="color:#686872;border-style:None;font-family:Arial;font-size:18px;font-weight:bold;cursor:pointer;"><span style="color:#686872;font-family:Arial;font-size:18px;font-weight:bold;cursor:pointer;">About</span></td> </tr> </table></td> </tr> </table><table id="ctl00_ASPxMenu1_DXM0_" cellspacing="0" cellpadding="0" border="0" style="border-collapse:collapse;border-collapse:separate;position:absolute;left:0px;top:0px;z-index:20000;visibility:hidden;display:none;"> <tr> <td class="dxmSubMenu" style="color:Gray;background-color:#EEEEEE;font-family:Arial;font-size:18px;"><table cellspacing="0" cellpadding="0" border="0" style="border-collapse:collapse;border-collapse:separate;"> <tr id="ctl00_ASPxMenu1_DXI0i0_" onclick="aspxMIClick(event, 'ctl00_ASPxMenu1', '0i0')" style="height:25px;"> <td id="ctl00_ASPxMenu1_DXI0i0_I" title="Select" class="dxmSubMenuGutter dxmSubMenuItemWithImage" style="height:25px;width:16px;cursor:pointer;padding-right:3px!important;border-right:0px!important;"><div style="height:25px;width:16px;overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI0i0_N" title="Select" class="dxmSubMenuItemWithImage dxmSubMenuItemImageSpacing" style="cursor:pointer;"><div style="overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI0i0_T" title="Select" class="dxmSubMenuItemWithImage" style="color:#686872;font-family:Arial;font-size:18px;width:100%;cursor:pointer;border-left:0px!important;padding-left:0px!important;"><a title="Select" href="/s/qv/pages/select/" style="color:#686872;font-family:Arial;font-size:18px;font-weight:bold;">Select</a></td> </tr><tr id="ctl00_ASPxMenu1_DXI0i0_II" class="dxmSubMenuItemSpacing"> <td class="dxmSubMenuGutter" style="cursor:pointer;"></td><td></td><td colspan="1"></td> </tr><tr id="ctl00_ASPxMenu1_DXI0i1_" onclick="aspxMIClick(event, 'ctl00_ASPxMenu1', '0i1')" style="height:25px;"> <td id="ctl00_ASPxMenu1_DXI0i1_I" title="View" class="dxmSubMenuGutter dxmSubMenuItemWithImage" style="height:25px;width:16px;cursor:pointer;padding-right:3px!important;border-right:0px!important;"><div style="height:25px;width:16px;overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI0i1_N" title="View" class="dxmSubMenuItemWithImage dxmSubMenuItemImageSpacing" style="cursor:pointer;"><div style="overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI0i1_T" title="View" class="dxmSubMenuItemWithImage" style="color:#686872;font-family:Arial;font-size:18px;width:100%;cursor:pointer;border-left:0px!important;padding-left:0px!important;"><a title="View" href="/s/qv/pages/view/1/" style="color:#686872;font-family:Arial;font-size:18px;font-weight:bold;">View</a></td> </tr><tr id="ctl00_ASPxMenu1_DXI0i1_II" class="dxmSubMenuItemSpacing"> <td class="dxmSubMenuGutter" style="cursor:pointer;"></td><td></td><td colspan="1"></td> </tr><tr id="ctl00_ASPxMenu1_DXI0i2_" onclick="aspxMIClick(event, 'ctl00_ASPxMenu1', '0i2')" style="height:25px;"> <td id="ctl00_ASPxMenu1_DXI0i2_I" title="Edit/Add Items" class="dxmSubMenuGutter dxmSubMenuItemWithImage" style="height:25px;width:16px;cursor:pointer;padding-right:3px!important;border-right:0px!important;"><div style="height:25px;width:16px;overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI0i2_N" title="Edit/Add Items" class="dxmSubMenuItemWithImage dxmSubMenuItemImageSpacing" style="cursor:pointer;"><div style="overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI0i2_T" title="Edit/Add Items" class="dxmSubMenuItemWithImage" style="color:#686872;font-family:Arial;font-size:18px;width:100%;cursor:pointer;border-left:0px!important;padding-left:0px!important;"><a title="Edit/Add Items" href="/s/qv/pages/edit/" style="color:#686872;font-family:Arial;font-size:18px;font-weight:bold;">Edit/Add Items</a></td> </tr><tr id="ctl00_ASPxMenu1_DXI0i2_II" class="dxmSubMenuItemSpacing"> <td class="dxmSubMenuGutter" style="cursor:pointer;"></td><td></td><td colspan="1"></td> </tr><tr id="ctl00_ASPxMenu1_DXI0i3_" onclick="aspxMIClick(event, 'ctl00_ASPxMenu1', '0i3')" style="height:25px;"> <td id="ctl00_ASPxMenu1_DXI0i3_I" title="Create New" class="dxmSubMenuGutter dxmSubMenuItemWithImage" style="height:25px;width:16px;cursor:pointer;padding-right:3px!important;border-right:0px!important;"><div style="height:25px;width:16px;overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI0i3_N" title="Create New" class="dxmSubMenuItemWithImage dxmSubMenuItemImageSpacing" style="cursor:pointer;"><div style="overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI0i3_T" title="Create New" class="dxmSubMenuItemWithImage" style="color:#686872;font-family:Arial;font-size:18px;width:100%;cursor:pointer;border-left:0px!important;padding-left:0px!important;"><a title="Create New" href="/s/qv/pages/new/" style="color:#686872;font-family:Arial;font-size:18px;font-weight:bold;">Create New</a></td> </tr><tr id="ctl00_ASPxMenu1_DXI0i3_II" class="dxmSubMenuItemSpacing"> <td class="dxmSubMenuGutter" style="cursor:pointer;"></td><td></td><td colspan="1"></td> </tr><tr id="ctl00_ASPxMenu1_DXI0i4_" onclick="aspxMIClick(event, 'ctl00_ASPxMenu1', '0i4')" style="height:25px;"> <td id="ctl00_ASPxMenu1_DXI0i4_I" title="Options" class="dxmSubMenuGutter dxmSubMenuItemWithImage" style="height:25px;width:16px;cursor:pointer;padding-right:3px!important;border-right:0px!important;"><div style="height:25px;width:16px;overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI0i4_N" title="Options" class="dxmSubMenuItemWithImage dxmSubMenuItemImageSpacing" style="cursor:pointer;"><div style="overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI0i4_T" title="Options" class="dxmSubMenuItemWithImage" style="color:#686872;font-family:Arial;font-size:18px;width:100%;cursor:pointer;border-left:0px!important;padding-left:0px!important;"><a title="Options" href="/s/qv/pages/options/" style="color:#686872;font-family:Arial;font-size:18px;font-weight:bold;">Options</a></td> </tr> </table></td> </tr> </table><table id="ctl00_ASPxMenu1_DXM2_" cellspacing="0" cellpadding="0" border="0" style="border-collapse:collapse;border-collapse:separate;position:absolute;left:0px;top:0px;z-index:20000;visibility:hidden;display:none;"> <tr> <td class="dxmSubMenu" style="color:Gray;background-color:#EEEEEE;font-family:Arial;font-size:18px;"><table cellspacing="0" cellpadding="0" border="0" style="border-collapse:collapse;border-collapse:separate;"> <tr id="ctl00_ASPxMenu1_DXI2i0_" onclick="aspxMIClick(event, 'ctl00_ASPxMenu1', '2i0')" style="height:25px;"> <td id="ctl00_ASPxMenu1_DXI2i0_I" title="ItemB2" class="dxmSubMenuGutter dxmSubMenuItemWithImage" style="height:25px;width:16px;cursor:pointer;padding-right:3px!important;border-right:0px!important;"><div style="height:25px;width:16px;overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI2i0_N" title="ItemB2" class="dxmSubMenuItemWithImage dxmSubMenuItemImageSpacing" style="cursor:pointer;"><div style="overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI2i0_T" title="ItemB2" class="dxmSubMenuItemWithImage" style="color:#686872;font-family:Arial;font-size:18px;width:100%;cursor:pointer;border-left:0px!important;padding-left:0px!important;"><a title="ItemB2" href="/s/qv/pages/B2/" style="color:#686872;font-family:Arial;font-size:18px;font-weight:bold;">ItemB2</a></td> </tr><tr id="ctl00_ASPxMenu1_DXI2i0_II" class="dxmSubMenuItemSpacing"> <td class="dxmSubMenuGutter" style="cursor:pointer;"></td><td></td><td colspan="1"></td> </tr><tr id="ctl00_ASPxMenu1_DXI2i1_" onclick="aspxMIClick(event, 'ctl00_ASPxMenu1', '2i1')" style="height:25px;"> <td id="ctl00_ASPxMenu1_DXI2i1_I" title="B3" class="dxmSubMenuGutter dxmSubMenuItemWithImage" style="height:25px;width:16px;cursor:pointer;padding-right:3px!important;border-right:0px!important;"><div style="height:25px;width:16px;overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI2i1_N" title="B3" class="dxmSubMenuItemWithImage dxmSubMenuItemImageSpacing" style="cursor:pointer;"><div style="overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI2i1_T" title="B3" class="dxmSubMenuItemWithImage" style="color:#686872;font-family:Arial;font-size:18px;width:100%;cursor:pointer;border-left:0px!important;padding-left:0px!important;"><a title="B3" href="/s/qv/pages/B3t" style="color:#686872;font-family:Arial;font-size:18px;font-weight:bold;">B3</a></td> </tr><tr id="ctl00_ASPxMenu1_DXI2i1_II" class="dxmSubMenuItemSpacing"> <td class="dxmSubMenuGutter" style="cursor:pointer;"></td><td></td><td colspan="1"></td> </tr><tr id="ctl00_ASPxMenu1_DXI2i2_" onclick="aspxMIClick(event, 'ctl00_ASPxMenu1', '2i2')" style="height:25px;"> <td id="ctl00_ASPxMenu1_DXI2i2_I" title="Get Help" class="dxmSubMenuGutter dxmSubMenuItemWithImage" style="height:25px;width:16px;cursor:pointer;padding-right:3px!important;border-right:0px!important;"><div style="height:25px;width:16px;overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI2i2_N" title="Get Help" class="dxmSubMenuItemWithImage dxmSubMenuItemImageSpacing" style="cursor:pointer;"><div style="overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI2i2_T" title="Get Help" class="dxmSubMenuItemWithImage" style="color:#686872;font-family:Arial;font-size:18px;width:100%;cursor:pointer;border-left:0px!important;padding-left:0px!important;"><a title="Get Help" href="/s/qv/pages/help/" style="color:#686872;font-family:Arial;font-size:18px;font-weight:bold;">Get Help</a></td> </tr><tr id="ctl00_ASPxMenu1_DXI2i2_II" class="dxmSubMenuItemSpacing"> <td class="dxmSubMenuGutter" style="cursor:pointer;"></td><td></td><td colspan="1"></td> </tr><tr id="ctl00_ASPxMenu1_DXI2i3_" onclick="aspxMIClick(event, 'ctl00_ASPxMenu1', '2i3')" style="height:25px;"> <td id="ctl00_ASPxMenu1_DXI2i3_I" title="Contact" class="dxmSubMenuGutter dxmSubMenuItemWithImage" style="height:25px;width:16px;cursor:pointer;padding-right:3px!important;border-right:0px!important;"><div style="height:25px;width:16px;overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI2i3_N" title="Contact" class="dxmSubMenuItemWithImage dxmSubMenuItemImageSpacing" style="cursor:pointer;"><div style="overflow:hidden;"> </div></td><td id="ctl00_ASPxMenu1_DXI2i3_T" title="Contact" class="dxmSubMenuItemWithImage" style="color:#686872;font-family:Arial;font-size:18px;width:100%;cursor:pointer;border-left:0px!important;padding-left:0px!important;"><a title="Contact" href="/s/qv/pages/contact/" style="color:#686872;font-family:Arial;font-size:18px;font-weight:bold;">Contact</a></td> </tr> </table></td> </tr> </table><script id="dxss_1469099284" type="text/javascript"> <!-- aspxAddHoverItems('ctl00_ASPxMenu1',[[['dxmMenuItemHover','dxmMenuItemHover'],['color:Black;border-style:None;','border-bottom-style:None;border-top-style:None;color:Black;'],['DXI0_','DXI1_','DXI2_'],['I','N','T','P'],[[''],[''],['']],['Img','PImg']],[[''],[''],['DXMST0_','DXMBC0_','DXMST2_','DXMBC2_']],[['dxmSubMenuItemHoverWithImage'],['color:Black;background-color:#CCCCCC;font-weight:bold;'],['DXI0i0_','DXI0i1_','DXI0i2_','DXI0i3_','DXI0i4_','DXI2i0_','DXI2i1_','DXI2i2_','DXI2i3_'],['I','N','T','P'],[[''],[''],[''],[''],[''],[''],[''],[''],['']],['Img','PImg']]]); var dxo = new ASPxClientMenu('ctl00_ASPxMenu1'); window['ctl00_ASPxMenu1'] = dxo; dxo.uniqueID = 'ctl00$ASPxMenu1'; dxo.appearAfter=1; dxo.enableAnimation=false; dxo.shadowVisible=false; dxo.InlineInitialize(); //--> </script> <script type="text/javascript"> //<![CDATA[ Sys.WebForms.PageRequestManager._initialize('ctl00$ContentPlaceHolder1$ScriptManager1', document.getElementById('aspnetForm')); Sys.WebForms.PageRequestManager.getInstance()._updateControls(['tctl00$ContentPlaceHolder1$UpdatePanelAddItems','tctl00$ContentPlaceHolder1$UpdatePanelGridView'], [], [], 90); //]]> </script> <div> <script type="text/javascript"> function fJEditDropDownWithItems(objDropDown) { if (objDropDown.value=='...Edit List') { window.location.replace("../appointment/"); } } </script> <h2> <span id="ctl00_ContentPlaceHolder1_LabelTitle" style="font-weight: 700">CompanyA ListType1 Display</span> </h2> <h3> <span id="ctl00_ContentPlaceHolder1_LabelTitle0" style="font-weight: 700">Add New Item</span> </h3> <div id="ctl00_ContentPlaceHolder1_UpdatePanelAddItems"> <table> <tr> <td> <span id="ctl00_ContentPlaceHolder1_LabelWith" style="font-weight: 700">With</span> </td> <td> <span id="ctl00_ContentPlaceHolder1_LabelDate" style="font-weight: 700">Date</span> </td> <td> <span id="ctl00_ContentPlaceHolder1_LabelTime" style="font-weight: 700">Time</span> </td> <td> </td> <td> <span id="ctl00_ContentPlaceHolder1_LabelAddNameCode">Code</span> </td> <td> <span id="ctl00_ContentPlaceHolder1_LabelAddFirstName" style="font-weight: 700">First Name</span> </td> <td> <span id="ctl00_ContentPlaceHolder1_LabelAddLastName" style="font-weight: 700">Last Name</span> </td> <td> <span id="ctl00_ContentPlaceHolder1_LabelMobile">Mobile</span> </td> <td> <span id="ctl00_ContentPlaceHolder1_LabelEmail">Email</span> </td> <td> </td> </tr> <tr> <td> <select name="ctl00$ContentPlaceHolder1$DropDownListAddWith" id="ctl00_ContentPlaceHolder1_DropDownListAddWith" onclick="fJEditDropDownWithItems(this);"> <option value="Dr Brown">Dr Brown</option> <option value="Dr Denyer">Dr Denyer</option> <option value="Dr Graham">Dr Graham</option> <option value="Dr Grey">Dr Grey</option> </select> </td> <td> <input name="ctl00$ContentPlaceHolder1$TextBoxAddDate" type="text" value="21/1/2013" id="ctl00_ContentPlaceHolder1_TextBoxAddDate" style="width:88px;" /> </td> <td> <input name="ctl00$ContentPlaceHolder1$TextBoxAddTimeHour" type="text" value="2" maxlength="2" id="ctl00_ContentPlaceHolder1_TextBoxAddTimeHour" style="width:20px;text-align: right" /> : <input name="ctl00$ContentPlaceHolder1$TextBoxAddTimeMinute" type="text" value="00" maxlength="2" id="ctl00_ContentPlaceHolder1_TextBoxAddTimeMinute" style="width:20px;" /> </td> <td> <select name="ctl00$ContentPlaceHolder1$DropDownListAMPM" id="ctl00_ContentPlaceHolder1_DropDownListAMPM"> <option value="0">AM</option> <option selected="selected" value="1">PM</option> </select> </td> <td> <input name="ctl00$ContentPlaceHolder1$TextBoxAddNameCode" type="text" onchange="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$TextBoxAddNameCode\',\'\')', 0)" onkeypress="if (WebForm_TextBoxKeyHandler(event) == false) return false;" id="ctl00_ContentPlaceHolder1_TextBoxAddNameCode" style="width:75px;" /> </td> <td> <input name="ctl00$ContentPlaceHolder1$TextBoxAddFirstName" type="text" id="ctl00_ContentPlaceHolder1_TextBoxAddFirstName" style="width:100px;" /> </td> <td> <input name="ctl00$ContentPlaceHolder1$TextBoxAddLastName" type="text" id="ctl00_ContentPlaceHolder1_TextBoxAddLastName" style="width:100px;" /> </td> <td> <input name="ctl00$ContentPlaceHolder1$TextBoxAddMobile" type="text" id="ctl00_ContentPlaceHolder1_TextBoxAddMobile" style="width:100px;" /> </td> <td> <input name="ctl00$ContentPlaceHolder1$TextBoxAddEmail" type="text" id="ctl00_ContentPlaceHolder1_TextBoxAddEmail" style="width:100px;" /> </td> <td> <input type="submit" name="ctl00$ContentPlaceHolder1$ButtonAdd" value="Add" id="ctl00_ContentPlaceHolder1_ButtonAdd" style="font-weight: 700" /> </td> </tr> <tr> <td> </td> <td> <span id="ctl00_ContentPlaceHolder1_RequiredFieldValidator1" style="color:Red;display:none;">Required</span> </td> <td> <span id="ctl00_ContentPlaceHolder1_RequiredFieldValidator5" style="color:Red;display:none;">Required</span> <span id="ctl00_ContentPlaceHolder1_RequiredFieldValidator6" style="color:Red;display:none;">Required</span> </td> <td> </td> <td> </td> <td> <span id="ctl00_ContentPlaceHolder1_RequiredFieldValidator3" style="color:Red;display:none;">Required</span> </td> <td> <span id="ctl00_ContentPlaceHolder1_RequiredFieldValidator4" style="color:Red;display:none;">Required</span> </td> <td> </td> <td> <span id="ctl00_ContentPlaceHolder1_RegularExpressionValidatorEmail" style="color:Red;display:none;">Enter a valid email address</span> </td> <td> </td> </tr> </table> </div> <div id="ctl00_ContentPlaceHolder1_UpdatePanelGridView"> <span id="ctl00_ContentPlaceHolder1_TimerGridView" style="visibility:hidden;display:none;"></span> <table style="margin-top: -20px" id="tblExistingItemsFor"> <tr> <td> <h3> <span id="ctl00_ContentPlaceHolder1_LabelExistingtItems" style="font-weight: 700">Show/Edit Items For</span> </h3> </td> <td> <select name="ctl00$ContentPlaceHolder1$DropDownListExistingItemsFor" onchange="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$DropDownListExistingItemsFor\',\'\')', 0)" id="ctl00_ContentPlaceHolder1_DropDownListExistingItemsFor"> <option selected="selected" value="Today">Today</option> <option value="Tomorrow">Tomorrow</option> </select> </td> </tr> </table> <div id="divGridview1" style="padding-right: 15px;"> <div> <table class="aspGridView" cellspacing="0" cellpadding="5" border="0" id="ctl00_ContentPlaceHolder1_GridView1" style="color:#333333;width:935px;border-collapse:collapse;"> <tr style="color:White;background-color:#507CD1;font-weight:bold;"> <th align="left" scope="col">With</th><th align="left" scope="col">Time</th><th align="left" scope="col">First Name</th><th align="left" scope="col">Last Name</th><th align="left" scope="col">Status</th><th align="left" scope="col">Mobile</th><th align="left" scope="col">Email</th><th scope="col"> </th> </tr><tr style="background-color:#EFF3FB;"> <td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl02_Label1">Dr Brown</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl02_Label2">6:00 PM</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl02_Label3">Angela</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl02_Label4">Woh</span> </td><td style="background-color:#799ADD;"> <select name="ctl00$ContentPlaceHolder1$GridView1$ctl02$DropDownListApppointmentStatus" onchange="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$GridView1$ctl02$DropDownListApppointmentStatus\',\'\')', 0)" id="ctl00_ContentPlaceHolder1_GridView1_ctl02_DropDownListApppointmentStatus" class="407303"> <option selected="selected" value="Status1">Status1</option> <option value="Status2">Status2</option> </select> </td><td class="CssClsWordBreakable"> </td><td style="width:30px;"> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl02_Label5" style="display:inline-block;width:100px;"></span> </td><td style="height:10px;"><input type="button" value="Edit" onclick="javascript:__doPostBack('ctl00$ContentPlaceHolder1$GridView1','Edit$0')" /></td> </tr><tr style="background-color:White;"> <td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl03_Label1">Dr Brown</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl03_Label2">5:45 PM</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl03_Label3">Mary</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl03_Label4">Chandler</span> </td><td style="background-color:#799ADD;"> <select name="ctl00$ContentPlaceHolder1$GridView1$ctl03$DropDownListApppointmentStatus" onchange="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$GridView1$ctl03$DropDownListApppointmentStatus\',\'\')', 0)" id="ctl00_ContentPlaceHolder1_GridView1_ctl03_DropDownListApppointmentStatus" class="407298"> <option selected="selected" value="Status1">Status1</option> <option value="Status2">Status2</option> </select> </td><td class="CssClsWordBreakable">6421983944</td><td style="width:30px;"><a href='mailto:mary.chandler@gmail.com' ><img src='http://www.QVApp.com/pages/edit/images/icon_email.png' border=0 alt='mary.chandler@gmail.com' title='mary.chandler@gmail.com' /></a></td><td style="height:10px;"><input type="button" value="Edit" onclick="javascript:__doPostBack('ctl00$ContentPlaceHolder1$GridView1','Edit$1')" /></td> </tr><tr style="background-color:#EFF3FB;"> <td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl04_Label1">Dr Grey</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl04_Label2">5:30 PM</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl04_Label3">Steven</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl04_Label4">Andrews</span> </td><td style="background-color:#799ADD;"> <select name="ctl00$ContentPlaceHolder1$GridView1$ctl04$DropDownListApppointmentStatus" onchange="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$GridView1$ctl04$DropDownListApppointmentStatus\',\'\')', 0)" id="ctl00_ContentPlaceHolder1_GridView1_ctl04_DropDownListApppointmentStatus" class="407302"> <option value="Status1">Status1</option> <option selected="selected" value="Status2">Status2</option> </select> </td><td class="CssClsWordBreakable"> </td><td style="width:30px;"> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl04_Label5" style="display:inline-block;width:100px;"></span> </td><td style="height:10px;"><input type="button" value="Edit" onclick="javascript:__doPostBack('ctl00$ContentPlaceHolder1$GridView1','Edit$2')" /></td> </tr><tr style="background-color:White;"> <td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl05_Label1">Dr Graham</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl05_Label2">5:30 PM</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl05_Label3">Mike</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl05_Label4">Headley</span> </td><td style="background-color:#799ADD;"> <select name="ctl00$ContentPlaceHolder1$GridView1$ctl05$DropDownListApppointmentStatus" onchange="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$GridView1$ctl05$DropDownListApppointmentStatus\',\'\')', 0)" id="ctl00_ContentPlaceHolder1_GridView1_ctl05_DropDownListApppointmentStatus" class="407299"> <option value="Status1">Status1</option> <option selected="selected" value="Status2">Status2</option> </select> </td><td class="CssClsWordBreakable">6427432034</td><td style="width:30px;"><a href='mailto:mike.headley@hotmail.com' ><img src='http://www.QVApp.com/pages/edit/images/icon_email.png' border=0 alt='mike.headley@hotmail.com' title='mike.headley@hotmail.com' /></a></td><td style="height:10px;"><input type="button" value="Edit" onclick="javascript:__doPostBack('ctl00$ContentPlaceHolder1$GridView1','Edit$3')" /></td> </tr><tr style="background-color:#EFF3FB;"> <td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl06_Label1">Dr Grey</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl06_Label2">5:00 PM</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl06_Label3">Joe</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl06_Label4">Gregory</span> </td><td style="background-color:#799ADD;"> <select name="ctl00$ContentPlaceHolder1$GridView1$ctl06$DropDownListApppointmentStatus" onchange="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$GridView1$ctl06$DropDownListApppointmentStatus\',\'\')', 0)" id="ctl00_ContentPlaceHolder1_GridView1_ctl06_DropDownListApppointmentStatus" class="407300"> <option selected="selected" value="Status1">Status1</option> <option value="Status2">Status2</option> </select> </td><td class="CssClsWordBreakable">6427098979</td><td style="width:30px;"><a href='mailto:jg@greenclean.com' ><img src='http://www.QVApp.com/pages/edit/images/icon_email.png' border=0 alt='jg@greenclean.com' title='jg@greenclean.com' /></a></td><td style="height:10px;"><input type="button" value="Edit" onclick="javascript:__doPostBack('ctl00$ContentPlaceHolder1$GridView1','Edit$4')" /></td> </tr><tr style="background-color:White;"> <td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl07_Label1">Dr Denyer</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl07_Label2">5:00 PM</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl07_Label3">Gary</span> </td><td> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl07_Label4">Steade</span> </td><td style="background-color:#799ADD;"> <select name="ctl00$ContentPlaceHolder1$GridView1$ctl07$DropDownListApppointmentStatus" onchange="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$GridView1$ctl07$DropDownListApppointmentStatus\',\'\')', 0)" id="ctl00_ContentPlaceHolder1_GridView1_ctl07_DropDownListApppointmentStatus" class="407301"> <option value="Status1">Status1</option> <option value="Status2">Status2</option> <option selected="selected" value="Finished">Finished</option> </select> </td><td class="CssClsWordBreakable"> </td><td style="width:30px;"> <span id="ctl00_ContentPlaceHolder1_GridView1_ctl07_Label5" style="display:inline-block;width:100px;"></span> </td><td style="height:10px;"><input type="button" value="Edit" onclick="javascript:__doPostBack('ctl00$ContentPlaceHolder1$GridView1','Edit$5')" /></td> </tr> </table> </div> <input type="hidden" name="ctl00$ContentPlaceHolder1$HiddenFieldLoadingNameCodeValues" id="ctl00_ContentPlaceHolder1_HiddenFieldLoadingNameCodeValues" value="0" /> <input type="hidden" name="ctl00$ContentPlaceHolder1$HiddenFieldListType1Number" id="ctl00_ContentPlaceHolder1_HiddenFieldListType1Number" value="102046" /> <input type="hidden" name="ctl00$ContentPlaceHolder1$HiddenFieldGridUpdatingCounterID" id="ctl00_ContentPlaceHolder1_HiddenFieldGridUpdatingCounterID" /> <input type="hidden" name="ctl00$ContentPlaceHolder1$HiddenFieldGridUpdatingDateTime" id="ctl00_ContentPlaceHolder1_HiddenFieldGridUpdatingDateTime" /> <input type="hidden" name="ctl00$ContentPlaceHolder1$HiddenFieldLastUpdatedDateTimeOldValue" id="ctl00_ContentPlaceHolder1_HiddenFieldLastUpdatedDateTimeOldValue" value="0" /> </div> </div> </div> <hr /><table class="style1"> <tr> <td align="center"> <span id="ctl00_LabelFooterText1">Copyright<br/ >All Rights Reserved.</span> </td> </tr> </table> </div> </div> <script type="text/javascript"> //<![CDATA[ var Page_Validators = new Array(document.getElementById("ctl00_ContentPlaceHolder1_RequiredFieldValidator1"), document.getElementById("ctl00_ContentPlaceHolder1_RequiredFieldValidator5"), document.getElementById("ctl00_ContentPlaceHolder1_RequiredFieldValidator6"), document.getElementById("ctl00_ContentPlaceHolder1_RequiredFieldValidator3"), document.getElementById("ctl00_ContentPlaceHolder1_RequiredFieldValidator4"), document.getElementById("ctl00_ContentPlaceHolder1_RegularExpressionValidatorEmail")); //]]> </script> <script type="text/javascript"> //<![CDATA[ var ctl00_ContentPlaceHolder1_RequiredFieldValidator1 = document.all ? document.all["ctl00_ContentPlaceHolder1_RequiredFieldValidator1"] : document.getElementById("ctl00_ContentPlaceHolder1_RequiredFieldValidator1"); ctl00_ContentPlaceHolder1_RequiredFieldValidator1.controltovalidate = "ctl00_ContentPlaceHolder1_TextBoxAddDate"; ctl00_ContentPlaceHolder1_RequiredFieldValidator1.focusOnError = "t"; ctl00_ContentPlaceHolder1_RequiredFieldValidator1.errormessage = "Required"; ctl00_ContentPlaceHolder1_RequiredFieldValidator1.display = "Dynamic"; ctl00_ContentPlaceHolder1_RequiredFieldValidator1.validationGroup = "AddItem"; ctl00_ContentPlaceHolder1_RequiredFieldValidator1.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid"; ctl00_ContentPlaceHolder1_RequiredFieldValidator1.initialvalue = ""; var ctl00_ContentPlaceHolder1_RequiredFieldValidator5 = document.all ? document.all["ctl00_ContentPlaceHolder1_RequiredFieldValidator5"] : document.getElementById("ctl00_ContentPlaceHolder1_RequiredFieldValidator5"); ctl00_ContentPlaceHolder1_RequiredFieldValidator5.controltovalidate = "ctl00_ContentPlaceHolder1_TextBoxAddTimeHour"; ctl00_ContentPlaceHolder1_RequiredFieldValidator5.focusOnError = "t"; ctl00_ContentPlaceHolder1_RequiredFieldValidator5.errormessage = "Required"; ctl00_ContentPlaceHolder1_RequiredFieldValidator5.display = "Dynamic"; ctl00_ContentPlaceHolder1_RequiredFieldValidator5.validationGroup = "AddItem"; ctl00_ContentPlaceHolder1_RequiredFieldValidator5.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid"; ctl00_ContentPlaceHolder1_RequiredFieldValidator5.initialvalue = ""; var ctl00_ContentPlaceHolder1_RequiredFieldValidator6 = document.all ? document.all["ctl00_ContentPlaceHolder1_RequiredFieldValidator6"] : document.getElementById("ctl00_ContentPlaceHolder1_RequiredFieldValidator6"); ctl00_ContentPlaceHolder1_RequiredFieldValidator6.controltovalidate = "ctl00_ContentPlaceHolder1_TextBoxAddTimeMinute"; ctl00_ContentPlaceHolder1_RequiredFieldValidator6.focusOnError = "t"; ctl00_ContentPlaceHolder1_RequiredFieldValidator6.errormessage = "Required"; ctl00_ContentPlaceHolder1_RequiredFieldValidator6.display = "Dynamic"; ctl00_ContentPlaceHolder1_RequiredFieldValidator6.validationGroup = "AddItem"; ctl00_ContentPlaceHolder1_RequiredFieldValidator6.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid"; ctl00_ContentPlaceHolder1_RequiredFieldValidator6.initialvalue = ""; var ctl00_ContentPlaceHolder1_RequiredFieldValidator3 = document.all ? document.all["ctl00_ContentPlaceHolder1_RequiredFieldValidator3"] : document.getElementById("ctl00_ContentPlaceHolder1_RequiredFieldValidator3"); ctl00_ContentPlaceHolder1_RequiredFieldValidator3.controltovalidate = "ctl00_ContentPlaceHolder1_TextBoxAddFirstName"; ctl00_ContentPlaceHolder1_RequiredFieldValidator3.focusOnError = "t"; ctl00_ContentPlaceHolder1_RequiredFieldValidator3.errormessage = "Required"; ctl00_ContentPlaceHolder1_RequiredFieldValidator3.display = "Dynamic"; ctl00_ContentPlaceHolder1_RequiredFieldValidator3.validationGroup = "AddItem"; ctl00_ContentPlaceHolder1_RequiredFieldValidator3.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid"; ctl00_ContentPlaceHolder1_RequiredFieldValidator3.initialvalue = ""; var ctl00_ContentPlaceHolder1_RequiredFieldValidator4 = document.all ? document.all["ctl00_ContentPlaceHolder1_RequiredFieldValidator4"] : document.getElementById("ctl00_ContentPlaceHolder1_RequiredFieldValidator4"); ctl00_ContentPlaceHolder1_RequiredFieldValidator4.controltovalidate = "ctl00_ContentPlaceHolder1_TextBoxAddLastName"; ctl00_ContentPlaceHolder1_RequiredFieldValidator4.focusOnError = "t"; ctl00_ContentPlaceHolder1_RequiredFieldValidator4.errormessage = "Required"; ctl00_ContentPlaceHolder1_RequiredFieldValidator4.display = "Dynamic"; ctl00_ContentPlaceHolder1_RequiredFieldValidator4.validationGroup = "AddItem"; ctl00_ContentPlaceHolder1_RequiredFieldValidator4.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid"; ctl00_ContentPlaceHolder1_RequiredFieldValidator4.initialvalue = ""; var ctl00_ContentPlaceHolder1_RegularExpressionValidatorEmail = document.all ? document.all["ctl00_ContentPlaceHolder1_RegularExpressionValidatorEmail"] : document.getElementById("ctl00_ContentPlaceHolder1_RegularExpressionValidatorEmail"); ctl00_ContentPlaceHolder1_RegularExpressionValidatorEmail.controltovalidate = "ctl00_ContentPlaceHolder1_TextBoxAddEmail"; ctl00_ContentPlaceHolder1_RegularExpressionValidatorEmail.focusOnError = "t"; ctl00_ContentPlaceHolder1_RegularExpressionValidatorEmail.errormessage = "Enter a valid email address"; ctl00_ContentPlaceHolder1_RegularExpressionValidatorEmail.display = "Dynamic"; ctl00_ContentPlaceHolder1_RegularExpressionValidatorEmail.validationGroup = "AddItem"; ctl00_ContentPlaceHolder1_RegularExpressionValidatorEmail.evaluationfunction = "RegularExpressionValidatorEvaluateIsValid"; ctl00_ContentPlaceHolder1_RegularExpressionValidatorEmail.validationexpression = "\\w+([-+.\']\\w+)*@\\w+([-.]\\w+)*\\.\\w+([-.]\\w+)*"; //]]> </script> <script type="text/javascript"> //<![CDATA[ var Page_ValidationActive = false; if (typeof(ValidatorOnLoad) == "function") { ValidatorOnLoad(); } function ValidatorOnSubmit() { if (Page_ValidationActive) { return ValidatorCommonOnSubmit(); } else { return true; } } WebForm_AutoFocus('ctl00_ContentPlaceHolder1_TextBoxAddNameCode');Sys.Application.initialize(); document.getElementById('ctl00_ContentPlaceHolder1_RequiredFieldValidator1').dispose = function() { Array.remove(Page_Validators, document.getElementById('ctl00_ContentPlaceHolder1_RequiredFieldValidator1')); } document.getElementById('ctl00_ContentPlaceHolder1_RequiredFieldValidator5').dispose = function() { Array.remove(Page_Validators, document.getElementById('ctl00_ContentPlaceHolder1_RequiredFieldValidator5')); } document.getElementById('ctl00_ContentPlaceHolder1_RequiredFieldValidator6').dispose = function() { Array.remove(Page_Validators, document.getElementById('ctl00_ContentPlaceHolder1_RequiredFieldValidator6')); } document.getElementById('ctl00_ContentPlaceHolder1_RequiredFieldValidator3').dispose = function() { Array.remove(Page_Validators, document.getElementById('ctl00_ContentPlaceHolder1_RequiredFieldValidator3')); } document.getElementById('ctl00_ContentPlaceHolder1_RequiredFieldValidator4').dispose = function() { Array.remove(Page_Validators, document.getElementById('ctl00_ContentPlaceHolder1_RequiredFieldValidator4')); } document.getElementById('ctl00_ContentPlaceHolder1_RegularExpressionValidatorEmail').dispose = function() { Array.remove(Page_Validators, document.getElementById('ctl00_ContentPlaceHolder1_RegularExpressionValidatorEmail')); } Sys.Application.add_init(function() { $create(Sys.UI._Timer, {"enabled":true,"interval":30000,"uniqueID":"ctl00$ContentPlaceHolder1$TimerGridView"}, null, null, $get("ctl00_ContentPlaceHolder1_TimerGridView")); }); //]]> </script> </form> </body> </html>Mark Br
Member
89 Points
173 Posts
Re: Submit button not firing?
Jan 26, 2013 03:55 AM|LINK
Can anyone else see why the submit button isn't working?
Rion William...
All-Star
27716 Points
4574 Posts
Re: Submit button not firing?
Jan 26, 2013 12:16 PM|LINK
It appears you have two submit buttons that have the same ID property. This would be considered invalid markup and may explain why the submit isn't firing properly :
and
You can find them by searcing your form for "ctl00_ContentPlaceHolder1_ButtonAdd".
Mark Br
Member
89 Points
173 Posts
Re: Submit button not firing?
Jan 27, 2013 07:18 PM|LINK
Thanks but no -- what you are seeing is one button -- if you look at the HTML you'll see I posted both the local HTML page and the remote HTML page with the words "Remote HTML" separating them. I just searched and saw there was only one button for each.
necro_mancer
Star
8089 Points
1590 Posts
Re: Submit button not firing?
Jan 27, 2013 11:36 PM|LINK
hi Mark,
It looks like you have to <form> with action.
To resolve this issue in a simpler way, please just remove all part of the unnecassary codes, leaving only the "submit" button. If there is any URL that you can refer me to, I am happy to check
Thank you.
Professional SQL 2008 R2 Service
Mark Br
Member
89 Points
173 Posts
Re: Submit button not firing?
Jan 28, 2013 12:58 AM|LINK
Thank you. There is a <form> tag in there already:
cnranasinghe
Star
8885 Points
1798 Posts
Re: Submit button not firing?
Jan 29, 2013 03:34 AM|LINK
wrap your fAppointmentAdd inside try catch, you can see the error. Maybe date format on server cause the error.
try
// move your code here
Catch ex As Exception
response.write(ex.ToString() // Add this line to diagnostic purpose only, remove on the production
end try
Mark Br
Member
89 Points
173 Posts
Re: Submit button not firing?
Jan 29, 2013 04:29 AM|LINK
Thanks. The event isn't even firing on the live server -- no postback.
I changed the code to test it. It works fine on the localhost with a popup:
Protected Sub ButtonAdd_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles ButtonAdd.Click fAppointmentAdd() End Sub Private Function fAppointmentAdd() As Boolean MsgBox("Add button fired.") Exit Function ...However nothing happens on the live server. BTW, here's the HTML in question when I right-clicked, inspect element in Chrome on the live server page:
As you can see sometimes it changes the markup (maybe after postback) to what is above.