Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 20 of 20
Search took 0.08 seconds.
Search: Posts Made By: keithboesker
Forum: PHP 03-29-2013, 08:50 PM
Replies: 0
Views: 162
Posted By keithboesker
submit div content to html2pdf page

I'm Needing to submit div content from one page to my html2pdf conversions page. I was wanting to do this using jquery so I do not have to leave my home page to make downloadable PDF file. I found an...
Forum: ASP 10-20-2012, 05:29 PM
Replies: 1
Views: 1,608
Posted By keithboesker
Select Statement Array Trouble

I have a newsletter program I'm trying to use a group list like 1,2,3,4 in my database to send email to one or more groups. So I get the groups say 1,2 but when I try to get the email address from a...
Forum: ASP 10-19-2012, 04:07 AM
Replies: 7
Views: 1,978
Posted By keithboesker
fixed it I forgot to remove the whitespace used...

fixed it I forgot to remove the whitespace used replace(request.form("NMGroups"), " ", "") 1, 2, 3, 4 almost looks like1,2,3,4 when I did the response.write to verify the form.
Forum: ASP 10-18-2012, 02:38 AM
Replies: 7
Views: 1,978
Posted By keithboesker
NMGroups is a number field in the database. the...

NMGroups is a number field in the database. the update script listed below updates but only puts 1 number instead of the array of numbers like 1,2,3,4 my insert statement on a different page works...
Forum: ASP 10-17-2012, 11:04 PM
Replies: 7
Views: 1,978
Posted By keithboesker
This is an array and it is a very useful way to...

This is an array and it is a very useful way to get checkboxes info from your users an put it one database column.

Update statement


NMGroups = Request.Form("NMGroups")

strSQL = "UPDATE...
Forum: ASP 10-17-2012, 03:55 AM
Replies: 7
Views: 1,978
Posted By keithboesker
Checkboxes not update in asp database

I have a list of checkboxes like 1,2,3,4,5 when I use update statement I get 1 instead of 1,2,3,4,5 in my database column. I have checked to make sure request.form is returning 1,2,3,4,5 and it is...
Forum: ASP 10-05-2012, 12:49 PM
Replies: 1
Views: 851
Posted By keithboesker
Delete all encrypted session cookies help?

I need so help delete all the encrypted session cookies on logout. Here's where I'd like to put the script. If anyone can help that would be awesome. Thanks in advance.

...
Forum: ASP 12-27-2011, 06:18 PM
Replies: 1
Views: 3,657
Posted By keithboesker
Fixed it.

Fixed it.
Forum: ASP 12-27-2011, 04:47 PM
Replies: 1
Views: 3,657
Posted By keithboesker
IE9 Frame Trouble

I have a frame issue in IE9 works in all other browsers. The error I keep getting is that it can't pass the getElementById. I try different compatible for IE but that's not working either. Any help...
Forum: ASP 12-10-2011, 04:17 AM
Replies: 20
Views: 1,642
Posted By keithboesker
Well no what was going on was I had 4 pages of...

Well no what was going on was I had 4 pages of results but it was showing 18 pages. I only wanted it to show 4 page numbers instead of 10. By added the last bit of code that took care of that issue....
Forum: ASP 12-09-2011, 10:26 PM
Replies: 20
Views: 1,642
Posted By keithboesker
I got it fixed all I needed to do is add: If...

I got it fixed all I needed to do is add:

If not p > maxpage Then

This stops the numbers when it reaches the maxpage count.

Thanks for the help.
Forum: ASP 12-09-2011, 10:05 PM
Replies: 20
Views: 1,642
Posted By keithboesker
This is what it shows: DEBUG: maxpage is 18,...

This is what it shows:

DEBUG: maxpage is 18, page is 1
DEBUG: EOF is False, pagesize is 24
Forum: ASP 12-09-2011, 03:10 PM
Replies: 20
Views: 1,642
Posted By keithboesker
So that highlights the current page but still...

So that highlights the current page but still shows 10 pages. Need it to only show maxpage on return if thats 1 or 4 pages. Any Ideas?
Forum: ASP 12-09-2011, 03:03 AM
Replies: 20
Views: 1,642
Posted By keithboesker
Now how do I just show for page links when I have...

Now how do I just show for page links when I have four pages instead of 10 page links? Plus how do I highlight the current page I'm on?
Forum: ASP 12-09-2011, 03:02 AM
Replies: 20
Views: 1,642
Posted By keithboesker
I got it fixed. I had to add this instead of page...

I got it fixed. I had to add this instead of page = 1

' validate the page:
If Not IsNumeric(page) Then page = 1
page = CINT(page)
Forum: ASP 12-09-2011, 02:47 AM
Replies: 20
Views: 1,642
Posted By keithboesker
OK that fixed the images. But paging script is...

OK that fixed the images. But paging script is not working. Doesn't go to next page. I added debug scripts. What next?
Forum: ASP 12-08-2011, 09:23 PM
Replies: 20
Views: 1,642
Posted By keithboesker
Here's the source code. I'm testing the website...

Here's the source code. I'm testing the website out here at: http://t.harmony-christian.org/gallerytest.asp


<html>

<head>
<meta http-equiv="Content-Type" content="text/html;...
Forum: ASP 12-08-2011, 04:09 PM
Replies: 20
Views: 1,642
Posted By keithboesker
I had two error message. I had to change the...

I had two error message. I had to change the strSQL to SQL in the open string and the other was =page error on the next button. But now the only thing I get is pagination and no images. I added my...
Forum: ASP 12-08-2011, 02:17 AM
Replies: 20
Views: 1,642
Posted By keithboesker
Here's my main code. I'm sure there a better way...

Here's my main code. I'm sure there a better way to do this. Any help would be appreciated.

<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td valign="top" width="100%">...
Forum: ASP 12-07-2011, 05:20 PM
Replies: 20
Views: 1,642
Posted By keithboesker
ASP Pagination Script Help?

I'm trying to setup paging with numbers in the middle of Previous and Next buttons. I found a script I like but i have one issue with it. Please help many thanks in advance.

Here the script I...
Showing results 1 to 20 of 20

 
Forum Jump

All times are GMT +1. The time now is 03:13 PM.