Click here to Skip to main content
15,896,606 members
Home / Discussions / C#
   

C#

 
GeneralRe: Triggo function Pin
Haizzster29-May-06 17:20
Haizzster29-May-06 17:20 
GeneralRe: Triggo function Pin
Dustin Metzgar30-May-06 5:06
Dustin Metzgar30-May-06 5:06 
GeneralRe: Triggo function Pin
Haizzster30-May-06 17:39
Haizzster30-May-06 17:39 
GeneralRe: Triggo function Pin
Dustin Metzgar31-May-06 2:50
Dustin Metzgar31-May-06 2:50 
AnswerRe: Triggo function Pin
Haizzster29-May-06 21:08
Haizzster29-May-06 21:08 
Questionhowto search *.jpgs in a website with c#? Pin
cmpeng3429-May-06 12:58
cmpeng3429-May-06 12:58 
AnswerRe: howto search *.jpgs in a website with c#? Pin
Ravi Bhavnani29-May-06 13:37
professionalRavi Bhavnani29-May-06 13:37 
AnswerRe: howto search *.jpgs in a website with c#? Pin
Nader Elshehabi29-May-06 13:37
Nader Elshehabi29-May-06 13:37 
Hello Mehmet
You could write a program that access the folders of the site directly, enumerate its content and choosing jpg files to download. The problem is that you'll get an "unauthorized access" thrown at your program, and to get around it this will be hacking, and you may get busted for this.

Another more complicated and less effecient way -which is used by almost all site downloader programs-, is to parse the source code of the page as html text. search for jpg files in the text, and extract the link and download it. the algorithm may look like this:
1- IndexOf("jpg")
2- GoBackToIndexOF("<ahref>") -or whaterver is the begining of the image link-
3- Read what's between as ImgLink
4- Download ImgLink

If you want to download images in subpages do the same algorithm to access these pages and parse them.
AnswerRe: howto search *.jpgs in a website with c#? Pin
Eran Aharonovich9-Jul-06 7:43
Eran Aharonovich9-Jul-06 7:43 
QuestionParse to double question Pin
JelleM29-May-06 11:36
JelleM29-May-06 11:36 
AnswerRe: Parse to double question Pin
lmoelleb29-May-06 11:44
lmoelleb29-May-06 11:44 
GeneralRe: Parse to double question Pin
JelleM29-May-06 11:58
JelleM29-May-06 11:58 
GeneralRe: Parse to double question Pin
lmoelleb29-May-06 20:24
lmoelleb29-May-06 20:24 
AnswerRe: Parse to double question Pin
User 665829-May-06 11:48
User 665829-May-06 11:48 
GeneralRe: Parse to double question Pin
JelleM29-May-06 11:58
JelleM29-May-06 11:58 
GeneralRe: Parse to double question Pin
JelleM29-May-06 12:42
JelleM29-May-06 12:42 
AnswerRe: Parse to double question Pin
Nader Elshehabi29-May-06 13:44
Nader Elshehabi29-May-06 13:44 
QuestionC# Late-binding with Delphi Question Pin
Andrew_Thomas29-May-06 11:34
Andrew_Thomas29-May-06 11:34 
JokeRe: C# Late-binding with Delphi Question Pin
Andrew_Thomas29-May-06 11:45
Andrew_Thomas29-May-06 11:45 
GeneralRe: C# Late-binding with Delphi Question Pin
leppie29-May-06 17:15
leppie29-May-06 17:15 
QuestionCan you use the VS.NET Designer for a TabPage? Pin
StevenS_Dev29-May-06 9:51
StevenS_Dev29-May-06 9:51 
AnswerRe: Can you use the VS.NET Designer for a TabPage? Pin
Rei Miyasaka29-May-06 10:53
Rei Miyasaka29-May-06 10:53 
GeneralRe: Can you use the VS.NET Designer for a TabPage? [modified] Pin
StevenS_Dev30-May-06 17:05
StevenS_Dev30-May-06 17:05 
QuestionSetting where Forms should show Pin
Tehshort29-May-06 9:24
Tehshort29-May-06 9:24 
AnswerRe: Setting where Forms should show [modified] Pin
Rei Miyasaka29-May-06 10:37
Rei Miyasaka29-May-06 10:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.