|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| Question |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: |
Dim objCDOMail 'Holds the CDONTS NewMail Object
Dim strBody1
'Set email to defined group for email
IF scte_segment = "Nationals" THEN
semail_group = "ConsultingManagersMajors_Nationals@concur.com"
end if
IF scte_segment = "Primary/Globals" THEN
semail_group = "ConsultingManagersPrimaryGlobal@concur.com"
end if
IF scte_segment = "Corporate Edition" THEN
semail_group = "ConsultingManagers-CorporateEdition@concur.com"
end if
IF scte_segment = "EMEA" THEN
semail_group = "EMEAImplementationManagement@concur.com"
END IF
strBody1 = "<body> " _
& " <span class='pageheader1'><span class='style10'>Concur Travel & Concur Implementation Architect Responses</span> " _
& " " _
& "<p class='pageheader1'>The summary of responses for " & sCompany_name & " may be navigating to the link below via your web browser :</span></p> " _
& " <p class='sectionheader'>http://operationsdevelopment.gelco.com/backoffice/config_mgr/cte_client_index.asp</p> " _
& "<blockquote> " _
& " <p class='large'>Company Name:<span class='success'> " & sCompany_name & " </span></p>" _
& " <p class='large'>Started:<span class='success'> " & sdate_time_your_info & " </span></p>" _
& " <p class='large'>Completed:<span class='success'> " & sclient_complete & " </span></p>"
sch = "http://schemas.microsoft.com/cdo/configuration/"
Set cdoConfig = Server.CreateObject("CDO.Configuration")
Const cdoBasic = 1
cdoConfig.Fields.Item(sch & "smtpserver") = "172.21.129.51"
cdoConfig.Fields.Item(sch & "sendusing") = 2
cdoConfig.fields.update
Set cdoMessage = Server.CreateObject("CDO.Message")
Set cdoMessage.Configuration = cdoConfig
cdoMessage.From = "Concur.Implementation.Architect@concur.com"
cdoMessage.To = semail_group
cdoMessage.Cc = "dave.evans@concur.com"
cdoMessage.Bcc = ""
cdoMessage.Subject = sCompany_name & " has submitted Concur Implementation Architect Responses "
'Set the e-mail body format (0=HTML 1=Text)
'cdoMessage.BodyFormat = 0
'Set the mail format (0=MIME 1=Text)
'cdoMessage.MailFormat = 0
'Set the main body of the e-mail
cdoMessage.HTMLBody = strBody1
'Send the e-mail
cdoMessage.Send
'Close the server object
Set cdoMessage = Nothing
Set cdoConfig = Nothing
'REDIRECT must execute after all other code within the "form submit" conditional statement.
redirect_1 = "notification_confirm.asp"
Redirect_1 = Redirect_1 & "?company_name =" & sCompany_Name
Redirect_1 = Redirect_1 & "&" & request.Form
Response.Redirect(Redirect_1)
END IF
'SETTING TEXT VARIABLES BASED ON PREVIOUS ANSWERS:
'All previous answers are available in the query string.
'In this example, "change_type" was the "name" value of the imput from a previous form. "Delete", "change", and "add" were the
'values of that input. These variables can be used in dynamic text on this page.
%>
|
Advertisement
| Hall of Fame |