Tagged Questions

1
vote
3answers
22 views

Retrieving dynamic text from a website in vb.net (VS2008)

Hey guys, i want to be able to retrieve dynamic data from a web page (share prices). I started out by retrieving the html code before i realised that as it is live data, the html c …
0
votes
5answers
53 views

Java: Most efficient way to store/retrieve workout information from a file?

I'm working on a Java project for class that stores workout information in a flat file. Each file will have the information for one exercise (BenchPress.data) that holds the time ( …
0
votes
0answers
56 views

cakephp retrieving multiple values in a column

I want to retrieve multiples values from a field. the code I am using this this $conditions = array('Tag.name'=>$compare);//$compare = array('value1', 'value2',..); $values = $ …
0
votes
1answer
25 views

Can you BLAST with BioPython? Anyone have experience with this?

Hi, I am going to BLAST several sequences and download the top 100 hits or so from each sequence. Then I will pool the downloaded sequences and remove duplicates. I was thinking …
0
votes
1answer
41 views

how to get cell value in iphone?

Hi, In my iphone application i have 4 cell in uiTable,and each cell having Integers values(10,12,13,14).How to retrieve the integer value while i click on each cell? And how to pu …
0
votes
4answers
118 views

PHP Variable from extended class

I'm trying to retrieve a variable from an extended class. This is how my main class looks: class SS { public $NONE = NULL; public $NUMBERS = array("1", "2", "3", "4", "5", "6", …
1
vote
3answers
158 views

PHP-Retrieve content from page

I'd like to retrieve a page's content and reformat it to my liking... For example: Go to example.com Get content within tags with class "x" Pass content to specific variables Sp …
0
votes
1answer
80 views

Object does not retrieves from viewstate

I am about to gone mad why? why? why? protected void Page_Load(object sender, EventArgs e) { AttachedPartnersViewState vs = ViewState[SessionVariables.Company_Attached …
0
votes
0answers
25 views

retrieve post or page title to iframed page

Hi, i'm iframing a php page into another php page on wordpress blog, and i need to retrieve post or page title from the main page to the iframed page as a post or page title. i mea …
0
votes
4answers
524 views

Asp.net retrieve domain url

I want to retrieve my domain url in asp.net. for example, if my url = http://www.mydomain.com/blog/currentPage.aspx?id=156, I just want the part: http://www.mydomain.com/blog/ ca …