links

html links in c# textbox

How can I put a link in a c# textbox? I have tried to put html tags in the box but instead of showing a link it shows the entire html tag. Can this be done with a textbox? Thanks ...

How to find inbound links to a given URL on the fly?

Technorarati's got their Cosmos api, which works fairly well but limits you to noncommercial use and no more than 500 queries a day. Yahoo's got a Site Explorer InLink Data API, but it defines the task very literally, returning links from sidebar widgets in blogs rather than just links from inside blog content. Is there any other alter...

Preserving linked tables for Access DBs in same folder when the folder changes

I've got two Access databases that share linked tables. They are deployed together in a directory and accessed via code in a Word form. How can I make sure that the links are preserved when the two databases are copied (together) to a different folder? Since I'm not "opening" the database, per se (it's being accessed via ADO), I don't k...

padding making links not work?

The link only works when i click on the actual text not the area around it even though the hover effect is working so i know the button is being targeted? this is also happening on a list within the site where I'm using left-padding and placing images there, if i click where the padding is it doesn't work? could .js scripts effect this...

problems once uploaded to server

This all works fine in MAMP but i've uploaded and now the problems start. heres an image of the code for the link and a grab of the result First image Second image any ideas? ...

Converting Relative links to Absolute?

I am programming a small script using PHP and regular expressions The aim of this script is to extract all links in a page and convert these links to absolute- when it is relative - I figured how does relative links works but their are some questions also lets say we have this page http://www.example.com/xxx1/xxx2/xxx3.html if this pag...

What is the best way to use links and anchors to toggle visibility in ASP.NET?

I have a page which is used to display numerous forms for the user to fill out and get reports generated. Each of these forms is inside it's own ASP:Panel control so that I can toggle the visibility of the form (so that only those with appropriate permissions get access to the reports they are allowed to). The client has now requested a...

Copying Specific Outgoing Links

There are 46 links on the site: http://www.math.hmc.edu/~ajb/PCMI/problem_solve.html. I want links from 7th link to 33th link. I need them separated to a file. Can I copy the outgoing links? ...

do not want to open a new window in flash

I have a home page in flash that links to pages in Dreamweaver. When online, I do not want a new window to open when directing to the url. (Now, I have an actionscript to go to URL, and a new window opens). Is there anyway to keep it the same? ...

ASP.Net links won't disable if done during postback

I'm still fairly new to ASP.Net, so forgive me if this is a stupid question. On page load I'm displaying a progress meter after which I do a post back in order to handle the actual loading of the page. During the post back, based on certain criteria I'm disabling certain links on the page. However, the links won't disable. I notice...

How do I style link menus for filtering like the 'Dean + Friends' 'Just Dean' 'Just Friends' one on Facebook?

Several pages on our e-commerce web app allow users to filter a status list of requests they've submitted to us. The filters are usually something like: All Pending Completed We have them set up as links. We'd like to style them so that the currently active filter is highlighted with a colored rectangle (w/rounded corners, natch!...

Suppress Link Titles

Is there a way to suppress the pop-up titles on links, yet still keep them on the page for the visually impaired? ...

how to trigger a jquery function just with the url?

Hello everyone.. this is my first question.. so, here we go. i have a site, 100% xhtml/css with some ajax functions thanks to jquery. te problem is.. for all the "sub pages".. the url remains the same (index.php).. my question is.. does jquery allow some url parameters to trigger an specific function? example: www.mypage.com -> hom...

How to create W3C- or Gmail-esque #anchor "links"?

If you use Gmail, you'll see URLs in the address bar like: https://mail.google.com/mail/#inbox https://mail.google.com/mail/#starred If you go to one of these URLs, it will jump straight to the corresponding view. A similar example is on http://validator.w3.org where the anchors #validate_by_uri, #validate_by_upload and #validate_by_inp...

What's the best way of extracting javascript links in an HTML document?

Hi All, I am writing a small webspider for a website which uses a lot of javascript for links: <htmlTag onclick="someFunction();">Click here</htmlTag> where the function looks like: function someFunction() { var _url; ... // _url constructed, maybe with reference to a value in the HTML doc // and/or a value passed as argume...

Javascript 'onkey*' events not working in Links browser

Anyone know anything about the Links browser? I am developing an application for Links (text mode) that is running on a terminal using Linux. The problem is that none of the 'on key' events (down, up, or press) will register. Here is the Javascript I am using: <body onload="Alert()" onkeydown="CheckKey(event.keyCode)"> <script type...

URL Bar id=1 Into jQuery ID

i want to get the id from the url bar and insert it into the href $("a[href='send_message.php?act=pm&id=$id']").colorbox({width:"500", height:"350", iframe:true}); ...

Matrix transforms; concepts and theory, are there any free resources for learning practically?

I've been having fun rendering charts and graphs from co-ordinates lately, and I'm fascinated by using matrices to transform co-ordinate spaces. I've been able to successfully scale and invert 2 dimensional co-ordinate spaces, but now my appetite is whetted. :) Where can I go for clear, informative, (free), educational material on matr...

css with links

I am assisting with the creation of a new website and tend to run into simple errors as I go. The following code is being used to style a link: a.homepage-employment, a:visited.homepage-employment { display:block; padding:5px; background-color:#055830; color:#fff; width:100%; } a:hover.homepage-employment { display:block; padding:5px; ...

OpenAL programming - links to get Started and playing WAV

I am trying to make some games and an important part of them is audio. So far, SDL_Mixer seems great but lacks the Mix_SetMusicPosition equivalent for channels. As a result, I tried OpenAL. But I have a problem with OpenAL too. OpenAL seems way more complex than SDL_Mixer. Besides, the ALUT function for loading Wave files is deprecated...