Reading textarea comtent from a form
Wed, 25 Jun 2008 14:19:34 -0400
I want users to submit text in a textarea form, and the information is submitted one
line at a time.
When they submit the form, it will go to an ASP script. How do I parse the textarea form
submission, line-by-line? What is the delimiter between the lines? Am I looking for
vbcrlf?
Thanks so much,
Toni
...
|
HTML or XML depending on client.
Tue, 24 Jun 2008 20:01:12 +0100
All,
Suppose I have a widget A that I would like to embed in several websites B,
C, and D.
Sites B and C are happy with the widget the way I've styled it but site D
isn't and wants to restyle it themselves.
What would be the best way of doing this in ASP? My thoughts are that I
have an ASP page that ...
|
ServerXMLHTTP and nodeValue versus nodeTypedValue
Tue, 24 Jun 2008 19:51:38 +0100
All,
Long time since I've done some proper coding in ASP and I've hit a wee snag
that has got me baffled. Well two actually but the other is to do with
running pages under Sun ASP so we'll not go there! Anyway, I digress...
I've cobbled together some code as shown below (removed error checking etc
for ...
|
Running ASP Code From a String
Tue, 24 Jun 2008 09:03:52 -0700 (PDT)
Can I run ASP code from a string? I thought of using this method to
get included files as text http://www.asp101.com/articles/michael/dynamicincludes/default.asp
but then I need to run it as ASP.
Thanks ...
|
PHP and ASP.Net Forms Authentication
Tue, 24 Jun 2008 05:37:00 -0700
Our site currently authenticates people using a php page on our IIS 6 site.
Basically this page takes their login information (user name and password) to
see if they are in our Active Directory. Most of the current pages use php.
We are building a couple aspx pages using .net 3.5 that we can host on the
sa ...
|
ASP JSON 2.0.2 relased
Sat, 21 Jun 2008 09:17:42 -0700 (PDT)
JSON engine of VBScript based ASP server technology, served on it's
deficiency of processing speciality. Also there have been like these
projects put they had some deficiencies. For instance
* find result late
* difficult application
* don't support full UNICODE
* don't compatible with primitive datatypes
* ...
|
RecordCount
Fri, 20 Jun 2008 12:20:58 -0400
I switched to parameterized queries and now having issues with RecordCount.
Regardless of the records returned, RecordCount = -1
How do I get an actual count?
thanks
<%
Dim rsProdCount__OD
rsProdCount__OD = "1"
If (Request("si") <> "") Then
rsProdCount__OD = Request("si")
End If
%>
<%
Dim rsProdCount ...
|
|
|
Re: Is this code better than my earlier code, security wise
Fri, 20 Jun 2008 06:22:18 -0700
Again, a HUGE thank you to all of you.
*** Sent via Developersdex http://www.developersdex.com *** ...
|
Re: Is this code better than my earlier code, security wise
Fri, 20 Jun 2008 06:19:20 -0700
Again, a HUGE thank you to all of you.
*** Sent via Developersdex http://www.developersdex.com *** ...
|
Re: Is this code better than my earlier code, security wise
Fri, 20 Jun 2008 04:09:20 -0700
Thanks again.
Ok, so by adding this:
set rs=createobject("adodb.recordset")
conn.sp_CheckLogin email,password, rs
instead of this:
sql="sp_CheckLogin '" & email & "','" & password & "'"
set rs=conn.execute(sql)
makes it secure?? If so, I have done it and it works. Just confirming so
I can go thru m ...
|