| 
	
		| View previous topic :: View next topic |  
		| Author | Message |  
		| san -
 
 
 Joined: 15 Feb 2005
 Posts: 3
 
 
 | 
			
				|  Posted: Tue Feb 15, 2005 10:58 am    Post subject: ASP ERROR |   |  
				| 
 |  
				| I am  using Abyss Web Server X1 since last 4 months. recently i installed ActiveHTML from seliSoft. but this is not working perfectly when i am opening ASP file it show following error
 
 Active Server Pages- Error 'ASP 0152 : 80004005'
 Security Error
 line 1137
 An error occurred while processing a user's security credentials ().
 
 Please sugesst me how to remove this error.
 Thanks
 Santosh
 |  |  
		| Back to top |     |  
		|  |  
		| aprelium -
 
 
 Joined: 22 Mar 2002
 Posts: 6800
 
 
 | 
			
				|  Posted: Tue Feb 15, 2005 4:18 pm    Post subject: Re: ASP ERROR |   |  
				| 
 |  
				| san, 
 Can you copy here the source code of this script from let's say lines 1125 to 1145? Please let us know which is line 1137 so that we can know which function is causing this error.
 _________________
 Support Team
 Aprelium - http://www.aprelium.com
 |  |  
		| Back to top |       |  
		|  |  
		| mcwilliams132 -
 
 
 Joined: 27 Jul 2003
 Posts: 167
 Location: Oshkosh, WI
 
 | 
			
				|  Posted: Tue Feb 15, 2005 7:26 pm    Post subject: |   |  
				| 
 |  
				| You're not going to find a "line 1137" since active html seems to count ALL of it's line of code on top of your own...so typically there's about 1000 lines of code before it even touched yours... 
 
 just an fyi
 _________________
 ::::::::::::::::::::::::::::::::::::::::::::::::::
 :: Jon-Paul LeClair
 :: http://mcwilliamsworld.com
 :: "Lobster sticks to magnet!"
 |  |  
		| Back to top |       |  
		|  |  
		| san -
 
 
 Joined: 15 Feb 2005
 Posts: 3
 
 
 | 
			
				|  Posted: Wed Feb 16, 2005 5:13 am    Post subject: ASP Error |   |  
				| 
 |  
				| Hi this is my code 
 <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
 <!--#include file="Connections/mailid.asp" -->
 <%
 ' *** Edit Operations: declare variables
 
 Dim MM_editAction
 Dim MM_abortEdit
 Dim MM_editQuery
 Dim MM_editCmd
 
 Dim MM_editConnection
 Dim MM_editTable
 Dim MM_editRedirectUrl
 Dim MM_editColumn
 Dim MM_recordId
 
 Dim MM_fieldsStr
 Dim MM_columnsStr
 Dim MM_fields
 Dim MM_columns
 Dim MM_typeArray
 Dim MM_formVal
 Dim MM_delim
 Dim MM_altVal
 Dim MM_emptyVal
 Dim MM_i
 
 MM_editAction = CStr(Request.ServerVariables("SCRIPT_NAME"))
 If (Request.QueryString <> "") Then
 MM_editAction = MM_editAction & "?" & Request.QueryString
 End If
 
 ' boolean to abort record edit
 MM_abortEdit = false
 
 ' query string to execute
 MM_editQuery = ""
 %>
 <%
 ' *** Insert Record: set variables
 
 If (CStr(Request("MM_insert")) = "form1") Then
 
 MM_editConnection = MM_mailid_STRING
 MM_editTable = "users"
 MM_editRedirectUrl = "thankyou.asp"
 MM_fieldsStr  = "First_Name|value|Last_Name|value|Address|value|Phone|value|Email|value|City|value|State|value|Country|value|ZipCode|value|UserId|value|Password|value"
 MM_columnsStr = "[First Name]|',none,''|[Last Name]|',none,''|Address|',none,''|Phone|none,none,NULL|Email|',none,''|City|',none,''|State|',none,''|Country|',none,''|ZipCode|none,none,NULL|UserId|',none,''|Password|',none,''"
 
 ' create the MM_fields and MM_columns arrays
 MM_fields = Split(MM_fieldsStr, "|")
 MM_columns = Split(MM_columnsStr, "|")
 
 ' set the form values
 For MM_i = LBound(MM_fields) To UBound(MM_fields) Step 2
 MM_fields(MM_i+1) = CStr(Request.Form(MM_fields(MM_i)))
 Next
 
 ' append the query string to the redirect URL
 If (MM_editRedirectUrl <> "" And Request.QueryString <> "") Then
 If (InStr(1, MM_editRedirectUrl, "?", vbTextCompare) = 0 And Request.QueryString <> "") Then
 MM_editRedirectUrl = MM_editRedirectUrl & "?" & Request.QueryString
 Else
 MM_editRedirectUrl = MM_editRedirectUrl & "&" & Request.QueryString
 End If
 End If
 
 End If
 %>
 <%
 ' *** Insert Record: construct a sql insert statement and execute it
 
 Dim MM_tableValues
 Dim MM_dbValues
 
 If (CStr(Request("MM_insert")) <> "") Then
 
 ' create the sql insert statement
 MM_tableValues = ""
 MM_dbValues = ""
 For MM_i = LBound(MM_fields) To UBound(MM_fields) Step 2
 MM_formVal = MM_fields(MM_i+1)
 MM_typeArray = Split(MM_columns(MM_i+1),",")
 MM_delim = MM_typeArray(0)
 If (MM_delim = "none") Then MM_delim = ""
 MM_altVal = MM_typeArray(1)
 If (MM_altVal = "none") Then MM_altVal = ""
 MM_emptyVal = MM_typeArray(2)
 If (MM_emptyVal = "none") Then MM_emptyVal = ""
 If (MM_formVal = "") Then
 MM_formVal = MM_emptyVal
 Else
 If (MM_altVal <> "") Then
 MM_formVal = MM_altVal
 ElseIf (MM_delim = "'") Then  ' escape quotes
 MM_formVal = "'" & Replace(MM_formVal,"'","''") & "'"
 Else
 MM_formVal = MM_delim + MM_formVal + MM_delim
 End If
 End If
 If (MM_i <> LBound(MM_fields)) Then
 MM_tableValues = MM_tableValues & ","
 MM_dbValues = MM_dbValues & ","
 End If
 MM_tableValues = MM_tableValues & MM_columns(MM_i)
 MM_dbValues = MM_dbValues & MM_formVal
 Next
 MM_editQuery = "insert into " & MM_editTable & " (" & MM_tableValues & ") values (" & MM_dbValues & ")"
 
 If (Not MM_abortEdit) Then
 ' execute the insert
 Set MM_editCmd = Server.CreateObject("ADODB.Command")
 MM_editCmd.ActiveConnection = MM_editConnection
 MM_editCmd.CommandText = MM_editQuery
 MM_editCmd.Execute
 MM_editCmd.ActiveConnection.Close
 
 If (MM_editRedirectUrl <> "") Then
 Response.Redirect(MM_editRedirectUrl)
 End If
 End If
 
 End If
 %>
 <html>
 <head>
 <title>signup</title>
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 <script language="JavaScript" type="text/JavaScript">
 <!--
 function MM_findObj(n, d) { //v4.01
 var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
 d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
 if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
 for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
 if(!x && d.getElementById) x=d.getElementById(n); return x;
 }
 
 function MM_validateForm() { //v4.0
 var i,p,q,nm,test,num,min,max,errors='',args=MM_validateForm.arguments;
 for (i=0; i<(args.length-2); i+=3) { test=args[i+2]; val=MM_findObj(args[i]);
 if (val) { nm=val.name; if ((val=val.value)!="") {
 if (test.indexOf('isEmail')!=-1) { p=val.indexOf('@');
 if (p<1 || p==(val.length-1)) errors+='- '+nm+' must contain an e-mail address.\n';
 } else if (test!='R') { num = parseFloat(val);
 if (isNaN(val)) errors+='- '+nm+' must contain a number.\n';
 if (test.indexOf('inRange') != -1) { p=test.indexOf(':');
 min=test.substring(8,p); max=test.substring(p+1);
 if (num<min || max<num) errors+='- '+nm+' must contain a number between '+min+' and '+max+'.\n';
 } } } else if (test.charAt(0) == 'R') errors += '- '+nm+' is required.\n'; }
 } if (errors) alert('The following error(s) occurred:\n'+errors);
 document.MM_returnValue = (errors == '');
 }
 //-->
 </script>
 </head>
 
 <body>
 <table width="100%" border="0" cellspacing="0" cellpadding="0">
 <tr>
 <td height="348" align="left" valign="top">
 <form action="<%=MM_editAction%>" method="post" name="form1" onSubmit="MM_validateForm('First_Name','','R','Last_Name','','R','Address','','R','Phone','','RisNum','Email','','RisEmail','City','','R','State','','R','Country','','R','ZipCode','','RisNum','UserId','','R','Password','','R');return document.MM_returnValue">
 <table width="313" align="center">
 <tr valign="baseline">
 <td width="104" align="right" nowrap><div align="left"><font size="1" face="Verdana, Arial, Helvetica, sans-serif">First
 Name :</font></div></td>
 <td width="197"> <strong><font size="1" face="Verdana, Arial, Helvetica, sans-serif">
 <input type="text" name="First_Name" value="" size="32">
 </font></strong></td>
 </tr>
 <tr valign="baseline">
 <td nowrap align="right"><div align="left"><font size="1" face="Verdana, Arial, Helvetica, sans-serif">Last
 Name :</font></div></td>
 <td> <strong><font size="1" face="Verdana, Arial, Helvetica, sans-serif">
 <input type="text" name="Last_Name" value="" size="32">
 </font></strong></td>
 </tr>
 <tr valign="baseline">
 <td nowrap align="right"><div align="left"><font size="1" face="Verdana, Arial, Helvetica, sans-serif">Address
 :</font></div></td>
 <td> <strong><font size="1" face="Verdana, Arial, Helvetica, sans-serif">
 <input type="text" name="Address" value="" size="32">
 </font></strong></td>
 </tr>
 <tr valign="baseline">
 <td nowrap align="right"><div align="left"><font size="1" face="Verdana, Arial, Helvetica, sans-serif">Phone
 :</font></div></td>
 <td> <strong><font size="1" face="Verdana, Arial, Helvetica, sans-serif">
 <input type="text" name="Phone" value="" size="32">
 </font></strong></td>
 </tr>
 <tr valign="baseline">
 <td nowrap align="right"><div align="left"><font size="1" face="Verdana, Arial, Helvetica, sans-serif">Email
 :</font></div></td>
 <td> <strong><font size="1" face="Verdana, Arial, Helvetica, sans-serif">
 <input type="text" name="Email" value="" size="32">
 </font></strong></td>
 </tr>
 <tr valign="baseline">
 <td nowrap align="right"><div align="left"><font size="1" face="Verdana, Arial, Helvetica, sans-serif">City
 :</font></div></td>
 <td> <strong><font size="1" face="Verdana, Arial, Helvetica, sans-serif">
 <input type="text" name="City" value="" size="32">
 </font></strong></td>
 </tr>
 <tr valign="baseline">
 <td nowrap align="right"><div align="left"><font size="1" face="Verdana, Arial, Helvetica, sans-serif">State
 :</font></div></td>
 <td> <strong><font size="1" face="Verdana, Arial, Helvetica, sans-serif">
 <input type="text" name="State" value="" size="32">
 </font></strong></td>
 </tr>
 <tr valign="baseline">
 <td nowrap align="right"><div align="left"><font size="1" face="Verdana, Arial, Helvetica, sans-serif">Country
 :</font></div></td>
 <td> <strong><font size="1" face="Verdana, Arial, Helvetica, sans-serif">
 <input type="text" name="Country" value="" size="32">
 </font></strong></td>
 </tr>
 <tr valign="baseline">
 <td nowrap align="right"><div align="left"><font size="1" face="Verdana, Arial, Helvetica, sans-serif">ZipCode
 :</font></div></td>
 <td> <strong><font size="1" face="Verdana, Arial, Helvetica, sans-serif">
 <input type="text" name="ZipCode" value="" size="32">
 </font></strong></td>
 </tr>
 <tr valign="baseline">
 <td nowrap align="right"><div align="left"><font size="1" face="Verdana, Arial, Helvetica, sans-serif">UserId
 :</font></div></td>
 <td> <strong><font size="1" face="Verdana, Arial, Helvetica, sans-serif">
 <input type="text" name="UserId" value="" size="32">
 </font></strong></td>
 </tr>
 <tr valign="baseline">
 <td height="35" align="right" nowrap>
 <div align="left"><font size="1" face="Verdana, Arial, Helvetica, sans-serif">Password
 :</font></div></td>
 <td> <strong><font size="1" face="Verdana, Arial, Helvetica, sans-serif">
 <input type="text" name="Password" value="" size="32">
 </font></strong></td>
 </tr>
 <tr valign="baseline">
 <td nowrap align="right"> </td>
 <td> <div align="center"><strong><font size="1" face="Verdana, Arial, Helvetica, sans-serif">
 <input type="submit" value="submit">
 </font></strong></div></td>
 </tr>
 </table>
 <input type="hidden" name="MM_insert" value="form1">
 </form>
 
 </td>
 </tr>
 </table>
 </body>
 </html>
 |  |  
		| Back to top |     |  
		|  |  
		| mcwilliams132 -
 
 
 Joined: 27 Jul 2003
 Posts: 167
 Location: Oshkosh, WI
 
 | 
			
				|  Posted: Wed Feb 16, 2005 7:36 pm    Post subject: |   |  
				| 
 |  
				| You may need to post what's in your include file: 
 <!--#include file="Connections/mailid.asp" -->
 
 It's obviously a connection but you never know...it could be the cause of your issue...
 _________________
 ::::::::::::::::::::::::::::::::::::::::::::::::::
 :: Jon-Paul LeClair
 :: http://mcwilliamsworld.com
 :: "Lobster sticks to magnet!"
 |  |  
		| Back to top |       |  
		|  |  
		| san -
 
 
 Joined: 15 Feb 2005
 Posts: 3
 
 
 | 
			
				|  Posted: Thu Feb 17, 2005 5:09 am    Post subject: ASP Erro |   |  
				| 
 |  
				| This is the code for mailid.asp 
 
 <%
 ' FileName="Connection_odbc_conn_dsn.htm"
 ' Type="ADO"
 ' DesigntimeType="ADO"
 ' HTTP="false"
 ' Catalog=""
 ' Schema=""
 Dim MM_mailid_STRING
 MM_mailid_STRING = "dsn=shrishti;"
 %>
 |  |  
		| Back to top |     |  
		|  |  
		| mcwilliams132 -
 
 
 Joined: 27 Jul 2003
 Posts: 167
 Location: Oshkosh, WI
 
 | 
			
				|  Posted: Thu Feb 17, 2005 7:27 pm    Post subject: |   |  
				| 
 |  
				| do you have the DSN setup on your machine pointing to your database? is there security needed to access the data...I see you only have the DSN name and no credentials beign passed.
 _________________
 ::::::::::::::::::::::::::::::::::::::::::::::::::
 :: Jon-Paul LeClair
 :: http://mcwilliamsworld.com
 :: "Lobster sticks to magnet!"
 |  |  
		| Back to top |       |  
		|  |  
		|  |  
  
	| 
 
 | You cannot post new topics in this forum You cannot reply to topics in this forum
 You cannot edit your posts in this forum
 You cannot delete your posts in this forum
 You cannot vote in polls in this forum
 
 |  |