html

HTTPS ASPX page Redirect to HTML page logs user out - as if session lost

Greetings, everyone: Firstly, sorry that my Flow description is long winded, but I think it might help with describing the problem. Background: Building asp.C# shopping app that is using a hosted payment page to process payments (using posting of data to a hosted payment page). SSL certificate is signed and installed. Flow: Prelim) ...

How do I remove HTML that I place dynamically with JQuery?

So I am adding text and textbox to a page dynamically if a checkbox is selected. However, the dynamic part is that the code behind is creating a CheckBoxList and appending text from a Code table to each checkbox. Therefore, I am looking for any checkbox with the ID that contains "chkCheckBox". From there, I can check if the next to ...

Why would my background image show up in Chrome but not in IE?

I have a background image set to my main div. The background image shows up fine in Chrome but doesn't show at all in IE. Any ideas on what would cause this? <div class="container" style="height:900px; margin-top:0px; background-image:url(Images/bg-stadiuminner.jpg); background-repeat:no-repeat;;"> Thanks ...

TinyMce Formatting problems

I recently put the use of TinyMCE in an application I am working on. Everything is working, but the Toolbar is shown on the bottom. I checked the documentation at. TinyMCE Configuration This doc shows how to configure the location of the toolbar given you are using Advanced mode and not Simple. I have confirmed that I am using the corr...

Why does my contact form render incorrectly on windows browsers?

I have created a contact form on the contact us page of a website I am building. Mac browsers render it properly, so does IE7 AND IE8 on Windows. FF, Chrome and Safari have issues with spacing on the Windows platform. My code is listed below; <form action="" method="post"> <fieldset id="fs1"> <div id="formLeftCol"> ...

Does Google index HTML content supplied by the Object tag

This might be a weird question, but I've been unable to find an answer. Assuming I were to use an Object tag to embed an HTML snippet from an outside source (different server), how does Googles spider view that data? Does it pull in the data source like a browser would or does it only view the alternate content found between the Object t...

How can multiple clients be notified of a single users actions? Web based channels...

Lets say we have a web based application where users login to their own channel. And our server manages and maintains a list of users, and their current ip addresses. When someone logs in, is it possible for each client to receive a notification of this users login? Equally if someone logs out, a similar notification would be generated....

Managing the spacing with BR

Howdy, My users are using Telerik Rad Editor for creating content. The content looks one way in the editor (the "correct" way) and when it's rendered through IE it looks different (wrong). They will do something like this (HTML source below) <table><tr> <td>Some content here <br/><br/></td> </tr> <tr> <td>And some other here <br/>...

just need to put the 1 image on the top and the second image would be on the bottom part

I just need to put the 1 image on the top and the second image would be on the bottom part of the background is that possible? please help me on this many thanks html { background:url(../images/try.jpg) repeat-y top center; width:100%; height:100%;} body { font: 100% Verdana, Arial, Helvetica, sans-serif; background:url(../ima...

creating 10.000 connected hexagon page?

I am trying to create 10.000 hexagon connected each other like bee combs.I want to create all of this as a element that after I can import some thing to inside them.But for connecting hexagons together my algorithms stuck after connecting first 6 elements. Here is my algorithm in java. I made in java for testing . And inaddition I want ...

Form Issue (closing itself early in table)

I'm running a query via php on a mysql database. With my result set I'm am iterating the following table: $resultString = '<table>'; $resultString .= '<tr>'; $resultString .= '<th>Index</th>'; $resultString .= '<th>Title</th>'; $resultString .= '<th>File</th>'; $resultString .= '<th>Templ...

Salesforce.com - Visualforce and ActiveX

Hi, I have a Visualforce page through which I am trying to access a SDK. It is done using ActiveX control. The VB + JS script that I have runs fine when it is a normal HTML page residing on my desktop. However the same code when incorporated in Visualforce does not work. Does running ActiveX control require uploading any kind of files t...

How can I capture an HTML document fragment as an alpha-transparent PNG?

I'm looking for a way of capturing a section of a web page as a transparent-backgrounded PNG. This would mean that the transparent background property would be truly transparent. A root level element, instead of displaying white, would create a png with a transparent background. However, I suspect the behavior I'm looking for just isn't...

Offline HTML5 .html pages - need to include file into another file

We have an offline set of HTML pages we're working with using HTML5 document type. We want to include our sub-navigation via a <script src="____"> but for some reason it's not including. Is there some other method of including the file without needing server-side assistance somewhere? Because of how we're delivering these files to the c...

Enabling "Back" on a page where I use javascript + fake hyperlink to hide current content and show new content

Hi, I'm creating a page where I want users to click on a link, and when they click on it, the current content of the page is replaced with new content (without actually leaving the same physical html page). I'm doing this using the following javascript: function ShowForm() { var ele = document.getElementById("Page1"); ele.style.displ...

How do I horizontally center <div> block elements?

I'm trying to horizontally center block elements. How can I accomplish this? <div class="content2"> <div class="middle-content"> <ul> <li> <div class="container"> <div class="container-head"> <div class="empty"></div> </div> <div class="content"> <!--Place holder for member cou...

How do I delegate Jquery UI click from image to list item?

I have a UL that contains items that the user can click on and move from one list to another. I have a function to inspect the list item and move it from one list to another and it works well -- except for one problem. The list item contains an image (which also responds to the click event). So if my user clicks on the image (essenti...

Use PHP to link to user profile

I want my php query to display the user name with a link to the user profile. <?php $get_items = "SELECT * FROM items WHERE category='test'"; $result = mysql_query($get_items); while($item = mysql_fetch_array($result, MYSQL_ASSOC)){ $creator = $item['created_by']; echo "<b>Seller: </b>"."<a href='userprof.php?id=$creator'>$cr...

Stopping Gif Animation Programmatically

I am developing a twitter application which references to the images directly from twitter. How can I avoid animated gifs from being played? I wouldn't like to grab the first frame every time an animated gif is displayed, to save CPU and bandwidth resources. I know that this was asked before, but window.stop() at the end of the page doe...

Related Parameters in HTML

I have a table of rows and columns on an HTML-based entry form that allows the user to edit multiple records. Each row corresponds to a database record and each column to a database field. When the user submits the form, the server needs to figure out which request parameter belongs to which row. The method I've been using for years is ...