Click here to Skip to main content
15,914,071 members
Home / Discussions / C#
   

C#

 
AnswerRe: DirectX Compiler Error Pin
Judah Gabriel Himango20-Feb-06 16:29
sponsorJudah Gabriel Himango20-Feb-06 16:29 
Questionrow and column count of excel file Pin
edel_ong20-Feb-06 14:24
edel_ong20-Feb-06 14:24 
AnswerRe: row and column count of excel file Pin
Judah Gabriel Himango20-Feb-06 16:31
sponsorJudah Gabriel Himango20-Feb-06 16:31 
QuestionHow to turn off executing Load event at design time feature? Pin
t800t820-Feb-06 13:57
t800t820-Feb-06 13:57 
AnswerRe: How to turn off executing Load event at design time feature? Pin
[Marc]20-Feb-06 14:20
[Marc]20-Feb-06 14:20 
GeneralRe: How to turn off executing Load event at design time feature? Pin
t800t820-Feb-06 14:30
t800t820-Feb-06 14:30 
AnswerRe: How to turn off executing Load event at design time feature? Pin
Dave Kreskowiak20-Feb-06 17:35
mveDave Kreskowiak20-Feb-06 17:35 
GeneralRe: How to turn off executing Load event at design time feature? Pin
t800t820-Feb-06 17:57
t800t820-Feb-06 17:57 
GeneralRe: How to turn off executing Load event at design time feature? Pin
J4amieC20-Feb-06 21:47
J4amieC20-Feb-06 21:47 
GeneralRe: How to turn off executing Load event at design time feature? Pin
Dave Kreskowiak21-Feb-06 13:23
mveDave Kreskowiak21-Feb-06 13:23 
GeneralRe: How to turn off executing Load event at design time feature? Pin
t800t821-Feb-06 13:28
t800t821-Feb-06 13:28 
GeneralRe: How to turn off executing Load event at design time feature? Pin
Dave Kreskowiak21-Feb-06 15:57
mveDave Kreskowiak21-Feb-06 15:57 
GeneralRe: How to turn off executing Load event at design time feature? Pin
t800t821-Feb-06 16:05
t800t821-Feb-06 16:05 
GeneralRe: How to turn off executing Load event at design time feature? Pin
Dave Kreskowiak22-Feb-06 1:52
mveDave Kreskowiak22-Feb-06 1:52 
QuestionMedia Player Control Pin
Sean8920-Feb-06 13:57
Sean8920-Feb-06 13:57 
AnswerRe: Media Player Control Pin
Judah Gabriel Himango20-Feb-06 16:33
sponsorJudah Gabriel Himango20-Feb-06 16:33 
QuestionDynamically registering events with a remote object Pin
Steven Williamson20-Feb-06 12:21
Steven Williamson20-Feb-06 12:21 
QuestionUse VS2005 designer to create Panel? Pin
Ravi Bhavnani20-Feb-06 11:57
professionalRavi Bhavnani20-Feb-06 11:57 
AnswerRe: Use VS2005 designer to create Panel? Pin
SHaroz20-Feb-06 13:15
SHaroz20-Feb-06 13:15 
GeneralRe: Use VS2005 designer to create Panel? Pin
Ravi Bhavnani20-Feb-06 13:21
professionalRavi Bhavnani20-Feb-06 13:21 
QuestionRemote Copy/paste Pin
IceWater4220-Feb-06 11:55
IceWater4220-Feb-06 11:55 
AnswerRe: Remote Copy/paste Pin
Judah Gabriel Himango20-Feb-06 16:36
sponsorJudah Gabriel Himango20-Feb-06 16:36 
GeneralRe: Remote Copy/paste Pin
IceWater4221-Feb-06 2:14
IceWater4221-Feb-06 2:14 
QuestionMeta tag reading in c# Pin
rizwan_rashid20-Feb-06 11:25
rizwan_rashid20-Feb-06 11:25 
AnswerRe: Meta tag reading in c# Pin
Judah Gabriel Himango20-Feb-06 16:41
sponsorJudah Gabriel Himango20-Feb-06 16:41 
rizwan_rashid wrote:
ttribute's value given wi


There's a couple options here. If these tags are in an HTML page, you could load the html document into the WebBrowser control, then access the individual elements using the WebBrowser's Document Object Model (DOM).

Another option is to parse the thing using XML parsing. If you've got a schema, great, it will help you figure out what goes where and will provide for a more predictable document. If there's no schema available, you can always just parse it blindly and try to find the attributes of all meta tags. Look into System.XML for that.

Finally, the last option would be to use regular expressions. For that, look into the System.Text.RegularExpressions namespace.

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.