url

Elegant way building url request with parameters

There must me a more elegant way to build a URL with parameters in .NET then for example Response.Write("<a href=HeadOfMarketView.aspx"+Session["HOM"] != null ? Session["HOM"]+">Head of Market</a> / ") I mean the concatenation of strings is a litte bit old school, no? ...

Problem opening URL with browser Safari on iphone

I, if I try to open this URL: http://compraonline.mediaworld.it/webapp/wcs/stores/servlet/ProductDisplay?catalogId=20000&amp;storeId=20000&amp;productId=2135168&amp;langId=-1&amp;category%5Frn=60701663 with Safari for iPhone, the URL that is loaded is without final part &category_rn=60701663. Thanks to everyone for the help ...

Simple interface for getting HTML content in Boost.Asio

There are a lot of examples how to make HTTP request to a server and get reply via boost.asio library. However, I couldn't find a good example of simple interface and wondering, if I need to implement it myself. For instance, if I need to get content of http://www.foo.bar/path/to/default.html, is there any way to get a content without v...

Get product link from Magento API

I am new to Magento and using their API. I need to be able to get the product url from the API call. I see that I can access the url_key and url_path, but unfortunately that's not necessarily what the URL for the product is (ie it may be category/my-product-url.html) where url_key would contain my-product-url and url_path would only co...

How do I get the relative path of a ASP.NET application from client side script?

How do you get an ASP.NET application relative URL from JavaScript? ...

What PHP command would peek into a page and record its HTML code (source)?

Hello, everybody!!! Would you, please, tell me what command (or a combination of those) in PHP would check a web-page by its URL and possibly download its code (HTML) into a variable? Well, I was suggested to use Goggle App Engines for this here, but I am also quite q curious about how much of that task can PHP perform. ...

restful image url obfuscation and click tracking

Hi There. I am wondering if anybody out there could explain or provide online examples (yes, I have already done a lot of googling for this) of how to: conceal the images that users are uploading to our site and how to track clicks of those images I noticed that a popular site out there has the following for an image url: http://...

Detecting an URL that redirects to another location

I need to detect when an URL redirects the browser to another location, including javascript redirects. I thought of using an actual web browser engine with javascript support to achieve this, by loading and interpreting the html from the url and setting some sort of "hook" to be notified whenever the browser changes the address. Can an...

URL for multiple markers in Google Maps

In a desktop Qt application, I have some GPS coordinates that I'd like to show on a map. My plan is to construct an URL with the coordinates and let a web browser and Google maps or a similar service do the heavy lifting. After reading some apparently reverse-engineered documentation at mapki.com slash wiki slash Google_Map_Parameter...

PHP: parse URL for matching directory /somedirectory/ and execute conditional code

This has to be pretty simple, but I'd like to parse the current URL and execute conditional code depending on whether the user is on the /sitemap/ directory. So for example, if the site is example.com, and if the request is example.com/sitemap/. Then I want to execute conditional code in that case. I'm using wordpress so I'm not sure i...

Detect DNS Redirect in .NET

In a .NET application I am writing, I need to detect whether a particular URL is available. For the average user with a default DNS server, an invalid address would end up throwing a WebException. However, at home I am using OpenDNS. When I request an invalid address at home, the automatic OpenDNS redirect makes .NET believe the reque...

Opening a Web URL with a TCL App that is Sitting on a Network Drive

Hello: I just finished a TCL Db App that includes a featrue to open web page URLs. My code is as follows ($adr is the url): eval exec [auto_execok start] \"\" [list $adr] This code works fine on my Windows workstation. However, after I placed the app on a network drive I receive the following error: '\Drive\Share\Folder\Subfolder' ...

Using HttpWebRequest with dynamic URI causes "parameter is not valid" in Image.FromStream

I'm trying to obtain an image to encode to a WordML document. The original version of this function used files, but I needed to change it to get images created on the fly with an aspx page. I've adapted the code to use HttpWebRequest instead of a WebClient. The problem is that I don't think the page request is getting resolved and so the...

hotfile account checker

hey all i wanna make hotfile account checker inorder to start working ,i want to know how to login i tried this http://www.hotfile.com/login.php?user=myusername&amp;pass=mypassword but it saying Bad username/password combination. :( even if i entred correct login data can any one help me please thanks in advance regards ...

PHP: Remove URL Param?

I have a function that I call with ?clear-cart appended to the end of my page; as you can probably guess, this function clears the user's cart. I call it like this <a href="?clear-cart">Clear Cart</a> Which works great (in that it loads the same page, but now the cart is cleared), except that the URL in the address bar now reads htt...

Parsing urls in .Net (ASP.Net MVC) to figure out what host they are for

I'm trying to add validation to our redirects to prevent us allowing redirections out of the domain. The urls I need to pass aren't trusted since they could come from the user via the url so I'm wondering what's a good way to parse the url to figure out the host? I knocked up an initial implementation using Uri.Parse but that doesn't l...

iphone file system save file from url

hello guys, i want to save a photo file from a given url to the documents folder of my app without giving it a filename just the url and it saves to disk, is that possible ? or do i have to get the data from the url and then parse it as UIImage then save that image to disk and give it a filename ? if there is no direct way, how can yo...

NoReverseMatch in django

Hi. After debugging for a while I found what the error was, but I don't know how to fix it. I have an urlConf whit the name 'ver_caja' who receives as argument the id of a caja object, and then call the generic object_detail. The queryset is correct: get all the caja objects correctly. In the template I have the call: {% ver_caja caja...

Percent Encoded UTF-8 to Ascii(8-bit) conversion

Im reading in urls and they often have percent encoded characters. Example: %C3%A9 is actually é According to http://www.microsystools.com/products/sitemap-generator/faq/character-percentage-url-encoding/ , characters in the upper half of 8-Bit ASCII (128-255) are encoded as UTF-8, then their bytes are saved as hex. Now, when I get my ...

how to deal with question mark in url in php single entry website

I'm dealing with two question marks in a single entry website. I'm trying to use urlencode to handle it. The original URL: 'search.php?query='.quote_replace(addmarks($search_results['did_you_mean'])).'&search=1' I want to use it in the single entry website: 'index.php?page='.urlencode('search?query='.quote_replace(addmarks($search...