The problem is with javascript. Since Lynx cannot process javascript postbacks, the paging and sorting with the gridviews do not work. Neither do select and edit commands. We are having to re-write everything as <asp:Button> commands in the field templates.
Thanks for the mention of MVC - I...
I am having a problem with the Intelligent Messaging Filter blocking my internal emails.
So far, the following has been tried:
1) Adding the IP address of the sending server under the accept connection filter.
2) The email address is NOT listed as a blocked address in any filter.
3)...
I actually had to figure this out a couple of weeks ago, and I was searching everywhere for the answer. I want to make sure I understand you correctly -
You are trying to get the name of the field and value, and you want it in the order that the form is laid out.
If so, you must use a...
Hello,
I am trying to get a regex to work for the following time format: 2:00PM-2:15PM
/^([1-9]|0[1-9]|1[012])[:]([0-5][0-9])([AM|PM])[-]([1-9]|0[1-9]|1[012])[:]([0-5][0-9])([AM|PM])+$/
I am fairly new to regex, but I copied the time condition from a previous regex that does work correctly...
You can use an if... then... statement to test for the Hidden field, as long as the value does not match any of your checkbox values.
Dim checkbox(100,2)
response.Write "Hidden Field=" & Request.Form(1) & "<br><br><br>"
For Each x in Request.Form
i = i + 1
checkbox(i,0)=x
if...
It does work in Query Analyzer, and I am connected to the right database.
I have had issues like this before with Sql Server 7 and column insert changes in DTS, but that was a column order issue. This time the column order has not been altered, just the name.
Is there anyway to get more...
I have the connection object at the top of the page...
strConnect1="DRIVER={SQL Server};" &_
"SERVER=myserver;DATABASE=mydatabase;" &_
"Trusted_Connection=yes;"
set objConn = Server.CreateObject("ADODB.Connection")
objConn.Open strConnect1
set objRS =...
I changed the MangerName field to ManagerName.
Originally the query did not have this ManagerName constraint, since I was just testing my connection to the table. It worked fine at that point.
When I realized that I had misspelled the field name, I changed it, and then that error started...
The query was running just fine until I changed a column name in the SQL table.
Unfortunately, ASP thinks there is an error. I am getting this error message:
Microsoft OLE DB Provider for ODBC Drivers error '80040e14'
[Microsoft][ODBC SQL Server Driver][SQL Server]Incorrect syntax near the...
Hello,
I am having a problem with an SQL query string.
strQry="select top 1 AvailableDayOfWeek from myMeetingAvailableTimeSlots WHERE ManagerName='sbaker'"
objRS.Open strQry,objConn,adOpenStatic,adLockOptimistic,adCmdTable
I have run it through SQL Query Analyzer, and there were no errors...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.