473,782 Members | 2,423 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

VeriSign Seal not Displaying in Production - 2nd post

I've read the posts here and VeriSign's KB articles, which pertain to the
seal not displaying in development mode. However, the seal still won't show
up on the .aspx production page, but it does work fine on our other .htm
pages! Talk about frustrating.

Here is the script (I put it in a table cell which is outside the default
form--should it be within the form? Within the table cell I've tried putting
it inside a DIV tag, and that didn't work, so I took out the DIV tags):
<script
src=https://seal.verisign.c om/getseal?host_na me=www.ourdomai n.org&size=S&us e_flash=YES&use _transparent=YE S&lang=en></script>

Here is how it is rendered when viewed, including the table info:
<table style="Z-INDEX: 104; LEFT: 4px; POSITION: absolute; TOP: 492px"
cellSpacing="0" cellPadding="0" width="150" border="0" height="100%">
<tr height="100%">
<td height="100%" width="150" valign="top" align="center">
<script
src="https://seal.verisign.c om/getseal?host_na me=www.ourdomai n.org&size=S&us e_flash=YES&use _transparent=YE S&lang=en"></script></td></tr></table>

Some things to consider: 1) the original script did not include quotation
marks around the url, but the VB.Net designer (HTML View) automatically puts
these quotation marks in;
2) the original script followed each parameter with an "&", but this is
converted to "&amp;"
3) Do I need to designate a language inside the script--<script
language=javasc ript, vbscript, etc.)?
4) In production, a scripting error occurs that says "End of line expected,
line 3", and when I debug this, it falls on the beginning of the 3rd line in
the certificate that starts with "aff=":
dn="WWW.OURDOMA IN.ORG";
lang="en";
aff="VeriSignCA Center";
tpt="transparen t";
etc...

What can I do to make this work in our .aspx page? As I mentioned, this
works in our donation pages that are non-.aspx pages.

Thank you in advance,
Richard

Nov 19 '05 #1
1 3481
I solved my own problem! I have VBScript just above the VeriSign script, so
all I needed to do was designate the language as JavaScript for the VeriSign
script (<script language=Javasc ript src=...>). It works fine now.

"Richard" wrote:
I've read the posts here and VeriSign's KB articles, which pertain to the
seal not displaying in development mode. However, the seal still won't show
up on the .aspx production page, but it does work fine on our other .htm
pages! Talk about frustrating.

Here is the script (I put it in a table cell which is outside the default
form--should it be within the form? Within the table cell I've tried putting
it inside a DIV tag, and that didn't work, so I took out the DIV tags):
<script
src=https://seal.verisign.c om/getseal?host_na me=www.ourdomai n.org&size=S&us e_flash=YES&use _transparent=YE S&lang=en></script>

Here is how it is rendered when viewed, including the table info:
<table style="Z-INDEX: 104; LEFT: 4px; POSITION: absolute; TOP: 492px"
cellSpacing="0" cellPadding="0" width="150" border="0" height="100%">
<tr height="100%">
<td height="100%" width="150" valign="top" align="center">
<script
src="https://seal.verisign.c om/getseal?host_na me=www.ourdomai n.org&size=S&us e_flash=YES&use _transparent=YE S&lang=en"></script></td></tr></table>

Some things to consider: 1) the original script did not include quotation
marks around the url, but the VB.Net designer (HTML View) automatically puts
these quotation marks in;
2) the original script followed each parameter with an "&", but this is
converted to "&"
3) Do I need to designate a language inside the script--<script
language=javasc ript, vbscript, etc.)?
4) In production, a scripting error occurs that says "End of line expected,
line 3", and when I debug this, it falls on the beginning of the 3rd line in
the certificate that starts with "aff=":
dn="WWW.OURDOMA IN.ORG";
lang="en";
aff="VeriSignCA Center";
tpt="transparen t";
etc...

What can I do to make this work in our .aspx page? As I mentioned, this
works in our donation pages that are non-.aspx pages.

Thank you in advance,
Richard

Nov 19 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
2341
by: TJ | last post by:
I need information on how to implement the PFPRO function within Verisign on a Windows platform. I hope it isn't true but I believe Verisign does not support PFPRO functions on Windows platforms only Unix. Has anyone handled e-commerce transaction via PHP on a Windows platform through Verisign. Again does anyone have any examples or has anyone here implemented an ecommerce site utilizing PHP on a Windows platform through Verisign using...
11
2550
by: Adam Nims | last post by:
I am planning out an e-commerce site, which I will most likely create in PHP. I am going to use VeriSign to process the credit cards. How would I use VeriSign in a PHP script? I've found some examples of PHP's Payflow Pro functions, but I haven't been able to get them to work on the server we have. The site will be hosted on a UNIX server.
2
1915
by: mvr | last post by:
Hi all I are using IIS 5.0, Oracle 8.1. I am having problem with the following Insert Statement when used on Production Web server with SSL(https://...., Verisign). This doesn't occur everytime. Our studies shows that it is occurring approximately between1-2% of the total applications/Year(70-80K). After adding some debugging, the insert statement, after failing, is giving the following error:
5
2886
by: ZMAN | last post by:
Hello. Are there any examples you can point me to for coding PHP to talk to verisign. My install is not configured with any support for it. I'd rather not have to re-configure. Thanks in advance
7
7653
by: Guangxi Wu | last post by:
Hi all, Happy New Year. I am using SignedXML and an X509 certificate to digitally sign a SOAP message body and put the signature in the SOAP header for a B2B business application. Can you suggest which type of digital certificates from VeriSign is for this purpose? I checked VeriSign's web site but didn't find it obvious to decide.
2
1563
by: Reddy | last post by:
Hi!, IE web COntrols are working perfectly on my local system. But when i moved to production server. That tree is not looking as it supposed to be. I don't know why? It has that dll in the bin folder, It displaying just text, not hyperlinks and buttons everything. My Production server is on different domain..from my system. I am uploading the project to the using the project copy of Visual Studio.NET. This is working fine when i moved my...
1
2907
by: Richard | last post by:
I've read the posts here and VeriSign's KB articles, which pertain to the seal not displaying in development mode. However, the seal still won't show up on the .aspx production page, but it does work fine on our other .htm pages! Talk about frustrating. Here is the script (I put it in a table cell which is outside the default form--should it be within the form? Within the table cell I've tried putting it inside a DIV tag, and that didn't...
6
1948
by: Ole Nielsby | last post by:
I'm having a strange problem with sealing virtual indexers. Looks like a compiler error to me - or have I overlooked some obscure statement in the specs? I have two virtual indexers in the same class, one of them by string, the other by int. The weird thing is, if I seal one of them, I can't override the other. Here is the code.
32
9454
by: Michael C | last post by:
I want to inherit from Bitmap to add a property but I can't because it's sealed. Is there any reason to seal a class? Thanks, Michael
0
9643
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10313
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10081
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9946
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8968
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5378
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5511
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3643
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2875
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.