Aan
Aan

Reputation: 12920

Missing ) with JavaScript Code

Here is the error.

Timestamp: 16/07/2012 06:05:02 م
Error: missing ) after argument list
Source File: http://www.tfwefffepchat.com/Register.aspx
Line: 210, Column: 411
Source Code:

SendSMS(96892042638,'There is a job equalvalent to you plz visit this link: http://www.twefffepchat.com/ApplyJob.aspx?id=8');

SendEmail('[email protected]','Matching Job','sss');

SendSMS(96892042638,'There is a job equalvalent to you plz visit this link: http://www.twefffepchat.com/ApplyJob.aspx?id=9');

SendEmail('[email protected]','Matching Job','sss');

SendEmail('[email protected]','Welcome',Welcome to Online Job Seekers your validation link : http://twefffepchat.com/Validate.aspx?id=__Page');SendSMS(96892042638,'[email protected] You have registered successfuly.your validation link :__Page'); 

Upvotes: 1

Views: 88

Answers (1)

johnmadrak
johnmadrak

Reputation: 825

Your error is here:

SendEmail('[email protected]','Welcome',Welcome to Online Job Seekers your validation link : http://twefffepchat.com/Validate.aspx?id=__Page');
//                                           ^ Here

You are missing the opening quote:

SendEmail('[email protected]','Welcome','Welcome to Online Job Seekers your validation link : http://twefffepchat.com/Validate.aspx?id=__Page');

Upvotes: 3

Related Questions