url

retrieving saved url in cookie for body background jquery

I am trying to retrieve a saved url from a jquery cookie its saving in the cookie but its not retrieving the cookie url $(document).ready(function() { $("#BGSelector a").click(function() { var imgLink = $("img", this).attr("src"); $.cookie("html_img", "" + imgLink + "", { expires: 7 }); var imgCookieLink = $.cookie(...

Is there a software that can make Wireframes from given url or jpg

Is it possible ? Or I just imagine ? ...

<c:import> tag

Hi, I'm trying to import file from the Header.jsp in my file by using import tag url attribute, but I'm getting runtime error--java.io.FileNotFoundException: http://localhost:8081/latest/header.jsp The imported file and the importing file in the same web app(latest). The code of the importing file is: <%@ taglib prefix="c" uri="http:...

How can I read sections of a large remote file (via tcpip?)

A client has a system which reads large files (up to 1 GB) of multiple video images. Access is via an indexing file which "points" into the larger file. This works well on a LAN. Does anyone have any suggestions as to how I can access these files through the internet if they are held on a remote server. The key constraint is that we ...

HTML Case Sensitive Issues

We have a site that's always been deployed on a windows server with no case sensitivity issues. However we now need to deploy to Linux and know the site has lots of incorrectly cased URL's and references. Are there any applications that could scan the site and fix casing issues? This would need to fix HTML files, CSS files and if possi...

adding sql query output to hyperlink in asp.net

I think it might have been asked before but i was unable to find the right answer, so i am asking here. i have added a data source which is working fine, i wanted a feature where i query the top n entries from the database and add it with a hyperlink. Think of it like Latest News! The markup for the hyperlink inside the ItemTemplate of D...

checking a pattern present in a string using javascript

How to check if a url or url pattern is presnt or not in a string using javascript. <script language="javascript"> var str="http://localhost/testprj?test=123213123"; var s=location.href; if(s.match('/http://localhost/testprj?test=1232/'){ alert('welcome!!'); } </script> what i need is to check the url pattern. complete code <htm...

Change URL parameters with jQuery?

I have this URL: site.fwx?position=1&archiveid=5000&columns=5&rows=20&sorting=ModifiedTimeAsc what I need is to be able to change the 'rows' url param value to something i specify, lets say 10. And if the 'rows' doesn't exist, I need to add it to the end of the url and add the value i've already specified (10). Anyone know the easiest ...

How do I prevent an included PHP script from changing the Location URL?

I'm including a PHP script that changes the URL. // index.php ob_start(); include "script.php"; // This script redirects using header("Location:"); $out = ob_get_clean(); // I use the $out data for calculations echo $out; Is there a simple way to counter or undo this unwanted redirect? How about: header("Location: index.php"); ...

How can I get the URL and Querystring? vb.net

I am refactoring some legacy code. The app was not using querystrings. The previous developer was hard coding some variables that the app uses in other places. Like this using VB.NET so.Cpage = "ContractChange.aspx" My question is can I programatically set this value and include the current querystring? I want so.Cpage to be something...

Can I replace % 20 with & nbsp in URLs that have spaces?

Within my HTML, can I use the character entity reference "&nbsp;" in place of "%20" in Web URLs? They're both spaces, right? ...

Printing the contents of a URL - javascript

I have a php page which has a chart, a date picker(calendar) and a few buttons. I want to add another button "Print Chart" which ONLY prints the chart & not the entire page ,in a local printer. I am trying to do this by a having another script(which only outputs a chart) and using the javascript function 'window.print' html <input t...

Decoding URL in Wireshark

I am trying to connect directly to the video stream of an IP video server (the "Nuuo" IP Server). Their instruction manual gives the URL of the 'home' - a page which installs a cute little activeX control that handles all interaction with the actual video server. I need the URL of that internal server. [I don't need the added controls ...

Getting absolute URL to page in code

I am new to ASP.NET and am trying to convert a web application from using hard-coded deployment locations (ie, /base/path/index.aspx) to discovering them at runtime. If I use Response.Redirect(), I can express the path as '~/index.aspx' and, at runtime, ASP.NET will build the correct URL to send the redirect to based on where the web ap...

Gradient servers as external files in SVG

Hi, the fill property in SVG accepts an url to point to a gradient/pattern element, an instance of a so-called 'paint server'. The Question: Is it possible in any browser (that is, not IE, of course), to use a gradient defined in an external SVG file? Like, in rect.svg, <rect fill="url(grad.svg#my_grad)" /> and the corresponding <li...

Determine an absolute url to a resource using vbscript/classic asp

I've created a pseudo user control for a site written in classic asp. The control is simply an asp page (with full HTML headers and body) that resides within an iframe in the parent page. The point was to create an AJAX-like interface for uploading files asynchronously (the parent page contains a large form and I didn't want to have to...

url capitilization

In what cases does capitilization affect a url? In some cases they seem to be case-sensitive. At other times they don't seem to be case sensitive. ...

How to use C# to capture a image of a specific url?

How to use C# to capture a image of a specific url? I want to use C# to automatically capture a image of a webpage based on a specific url. For example, I have a page contains a txtUrl.Text = "http://www.some.com/index.aspx" , then I click a button, how can I capture a image of that Url? ...

Replace URL with a link using regex in python

Hello, how do I convert some text to a link? Back in PHP, I used this piece of code that worked well for my purpose: $text = preg_replace("#(^|[\n ])(([\w]+?://[\w\#$%&~.\-;:=,?@\[\]+]*)(/[\w\#$%&~/.\-;:=,?@\[\]+]*)?)#is", "\\1<a href=\"\\2\" target=\"_blank\">\\3</a>", $text); $text = preg_replace("#(^|[\n ])((...

os.path.basename works with URLs, why?

>>> os.path.basename('http://example.com/file.txt') 'file.txt' .. and I thought os.path.* work only on local paths and not URLs? Note that the above example was run on Windows too .. with similar result. ...