retrieve

ASP.NET/PHP/HTML: Retrieving HTML source code from a website

Hi, Is it possible to retrieve/get the html source code of a certain website and use it in a ASP.NET web application to display them? (without using the copy-paste, of course) I want my ASP.NET web application to use them as part of a code sample feature I currently working on. I'm also considering working it on PHP. Any suggestions? ...

asp repeater item retrieve and change property

yo, i have repeater <asp:Repeater ID="Repeater1" runat="server" DataSource='<%# Bind("Photos") %>' OnItemCreated="Repeater1_itemCreated" > <ItemTemplate> <div class="thumbs"> <a href='Images/Parts/Photos/<%# Eval("PhotoId") %>.jpg' rel="lightbox-parts"> ...

Retrieve method/code from many files

I have many .cs files and I want to retrieve the method behind the [AcceptVerbs(HttpVerbs.Post)] attribute from these files automatically. so input is: [AcceptVerbs(HttpVerbs.Post)] public ActionResult sample(string msg) {......} and output is: public ActionResult sample(string msg) {......} My idea is use the RegularExpressions a...

Retrieving All email address from iphone address book

Possible Duplicate: Issue regarding retrieving all email ids from address book in iphone Hi friend, Is it possible to retrieve all email ids from iphone address book. can you please tell a way to retrieving it. Thanks in advance Regards, sathish ...

List All Files in a Directory using Dot Net Zip?

Is there anyway in Dot Net Zip that I can use to list all the names of files in a specific directory? For example, i can specify Directory1 and get File3 and File4 etc ZipFile ------- File1 File2 Directory1 File3 File4 Directory2 File5 File6 ZipFile object has only Entries, Entries Sorted, and Entries File Names.....

retrieving Google search results

hi sir..i read your post on http://stackoverflow.com/questions/1784114/simple-php-script-to-retrieve-google-keyword-search-completion and i was wondering how would you go 'echo' the next page? here's my script.. $search = 'query'; $x = json_decode( file_get_contents( 'http://ajax.googleapis.com/ajax/services/search/web?v=1.0...

how to read and write MP3 to database

how to read MP3 from Sql database. in sql i have stored the file as binary format. now i want to retrive the Mp3 file stored in the sql and show in my aspx page. how???? pls help... ...

retrieving doubles in NSMutableArray converted with [NSNumber numberWithDouble:doubleVar]

I am looking for what is probably a simple answer to my novice question. I know that NSMutableArray can only hold objects, so when I put the double into the array I used the [myArray addObject:[NSNumber numberWithDouble:aValue]]; conversion method. What I need to do now is to pull the values out as doubles and average them. I believe...

How to recover deleted rows from SQL server table ?

I accidentaly ran a DELETE command against a table with a wrong WHERE clause. I am using SQL Server 2005. Is there a way, or any utility software that could help me recover the lost data? ...

Methods of storing permanent data in java

I am currently doing a programming assignment and it says that we should "store all the data in a data file and need to check the compatibility of the user PIN and account no. validity" Unfortunately my lecturer has not taught us about data files, and when I googled I found two different answers, Store data in notepad (.txt) file Stor...

[Javascript] Getting the URI used to load a div on a page?

I have a div on a PHP-generated page loaded through jQuery's .load() function. This div contains a long list which has been paginated (links for page 1, 2, 3... 25, etc.). I'd like to write a function which will preserve the variables in 'search' portion of the URI (which is to say at the end of the URI: ?foo=1&bar=pancakes) and stick ...

Is it possible to get information about all apps installed on iPhone?

Is it possible to get the information (app icon, app name, app location) about all apps that have been installed on iPhone/iPod? ...

Problem with retrieving current SignalStrength

So the problem is in getting real-time values of signal strength for the currently connected base station. When I use neighbor cell info, I always get fluctuating values of RSSI (what is definitely right). However, when I try to get signal strength for current cell I receive constant value (it shows me -63 dBm (25 asu) all the time). The...

Google Calendar - get events from a SPECIFIC calendar

Hello I'm hoping this will be relatively easy to someone who is familiar with the Google Calendar API, have done some searching but the API isn't giving me the answer! Imagine that a Google Account has 3 calendars, all created by that user. I'm trying to get events from a SPECIFIC calendar of that user, using the .NET Google API, as f...