I have this structure for the table course:
Search page -> Result Page -> Edit Page -> Show page
When i go from result page to a specific course edit page, i edit it, and end up on the show page, but when i hit back, i get a loop from show to edit, and back to show and so on.
I want the edit page to back to the result page if it came ...
I'm developing my first Facebook application in ASP.NET 2.0 and doing a simplest thing, i.e. to show a navigation on top with four hyperlinks where each link targets to another .aspx page. Please if someone can help me doing this using FBML in ASP.NET 2.0.
Other wise coming to my question, where i'm struck after trying above thing at my...
Using jquery fitted* plugin, if I put a rel ="external" on the clickable area is successfully opened in new tab, but clicking on the link opens 2 times,
how to fix this?
for example:
i have:
<p>
text <a rel="external" href="/link">text2</a>
</p>
text opens perfectly one time, but clicking in text2 the link opens two times
the code i...
It seems like there is an increasingly popular trend to style hyperlinks in a color that's barely distinguishable from body text. I noticed this just the other day on an SFGate blog page. Also notice that link just a few words ago. Are my eyes getting worse, or is that hard to spot?
I certainly understand styling hyperlinks to look bett...
Is there anyway to listen to the onload event for a <link> element?
F.ex:
var link = document.createElement('link');
link.rel = 'stylesheet';
link.href = 'styles.css';
link.onload = link.onreadystatechange = function(e) {
console.log(e);
};
This works for <script> elements, but not <link>. Is there another way?
I just need to kn...
Hello, I have simplified my page and here what I have:
<html>
<head>
<meta http-equiv="content-type" content="text/plain; charset=utf-8" />
<title>Title</title>
<style>
a {
text-decoration: none;
}
div select {
margin-top: 20px;
display: block;
}
</style>
<script type="text/javascript" src="http:...
Hi people,
I am working on this site and encountered the following problem when i opened on IE 7.
Case I am seeing default windows colours for the links. (Blue for unvisited and purple for unvisited links) because the "Use windows Colours has been enabled". I have looked at the
LoVe HAte concept too. I am not using them.
I also tried...
If I insert an image inside an <a> tag, how could I avoid, using js if it was necessary, that when someone clicks on that image it doesn't follow the link.
...
Hi,
I am writing a small test program that gives the following xml file as output:
<Books>
<Fiction>
<Name>Book_Name</Name>
<Price>price in $</Price>
<Details>hyperlink to the book's page</Details>
</Fiction>
</Books>
I have written this program in C# and write out this xml from LINQ. I want to add hyperlink to th...
so i have a swf with a simple animation- the div used to contain it has a border that changes color when you hover- i want the whole thing to link to a new page when clicked- but right now it only works when you click on the border.
heres what i have so far
(a href="http://" class="noDecoration" )
(div id="ink" class="galleryBox" ...
Hello,
I am working on a table(in document A) which needs to be referred to another document(document B, not sheet 2 of document A). I used macro and VLOOKUP to link the data and it works perfectly well when both documents are opened. However, once i closed document B, the data on the table cannot be shown with a message " subscript out...
Hi,
how can I add a attribute like rel="example_group" to a hyperlink control in a databound gridview?
<asp:HyperLink ID="HyperLink3" runat="server">HyperLink</asp:HyperLink>
Protected Sub GridView1_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles GridView1.RowDataBound
Dim my...
Hi, I've got a canvas within which I have a list. The renderer for this list calls upon a "Text" field, with the "link" element of this field set to a function. The "htmlText" of the field is set dynamically to a mixture of words and links. Basically the function checks to see which tag within the htmlText has been clicked and perfor...
I know this sounds like a stupid question but for some reason the way I'm doing it keeps giving me crashes with "symbol lookup error"/"undefined symbol".
This is what crashes:
#include <QVariantAnimation>
#include <QDebug>
class MyAnimacion : public QVariantAnimation {
public:
MyAnimacion() : QVariantAnimation() {}
~MyAnimacio...
i have this in my vb.net code.
label1.text = "Click on THIS ONE to proceed"
Now for the THIS ONE in the label text i want to give it a hyperlink or response.redirect. Any ideas how i can do this?
...
Hello everyone, i am currently working on a website and I need to make a chat application for it (as seen on some other questions i posted, haha)
Anyway, the gist is that I now have my website (on localhost for the time being), and my chat application. Now i need to make a button which, on click, will open the chat webpage in a pop-up w...
Hi there, can anybody help me here please?
I am using AJAX for pagination in my application. So I am generating hyperlinks with for loop. as follow:
for($t=1; $t<=$hf; $t++)
{
if($t == $_GET['pageno'])
{
echo $t." ";
}
else
{
echo "<a id ='$t' href='javascript:void(0)' onclick='open_page('ajaxinfo....
so i have a swf with a simple animation- the div used to contain it has a border that changes color when you hover- i want the whole thing to link to a new page when clicked- but right now it only works when you click on the border.
heres what i have so far
(a href="http://" class="noDecoration" )
(div id="ink" class="galleryBox" )
(/...
I'm adding a feature to a web app where users can click a button to enter a link, and then paste in an address. I then want to be parse out the string entered, and extract the domain from the URL so that I can display the domain separately next to the link. The idea here is something similar to what Slashdot does, where links are display...