Click here to Skip to main content
15,904,153 members
Home / Discussions / C#
   

C#

 
GeneralRe: ApplicationIcon Pin
Heath Stewart13-May-04 2:22
protectorHeath Stewart13-May-04 2:22 
GeneralRe: ApplicationIcon Pin
sreejith ss nair13-May-04 2:37
sreejith ss nair13-May-04 2:37 
QuestionHow to get distinct rows data From Dataset ? Pin
Old Gun11-May-04 22:15
Old Gun11-May-04 22:15 
AnswerRe: How to get distinct rows data From Dataset ? Pin
Aryadip11-May-04 23:24
Aryadip11-May-04 23:24 
AnswerHere you will get it Pin
sreejith ss nair12-May-04 1:23
sreejith ss nair12-May-04 1:23 
GeneralRe: Here you will get it Pin
Heath Stewart12-May-04 3:38
protectorHeath Stewart12-May-04 3:38 
GeneralRe: Here you will get it Pin
sreejith ss nair12-May-04 17:04
sreejith ss nair12-May-04 17:04 
GeneralXML - Stripping Namespaces Pin
MrEyes11-May-04 22:13
MrEyes11-May-04 22:13 
Is it possible to programmatically remove namespaces from an XML string?

For example :

<ControlActEvent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:monkeys-org:v3" attrib1="A1" attrib2="A2">

Would become :

<ControlActEvent attrib1="A1" attrib2="A2">

OR

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <Logon xmlns="http://www.domain.com/EP/">
      <userId>int</userId>
      <strPassword>string</strPassword>
      <strSessionId>string</strSessionId>
    </Logon>
  </soap:Body>
</soap:Envelope>


becomes

<?xml version="1.0" encoding="utf-8"?>
<Envelope>
  <Body>
    <Logon>
      <userId>int</userId>
      <strPassword>string</strPassword>
      <strSessionId>string</strSessionId>
    </Logon>
  </Body>
</Envelope>





post.mode = postmodes.signature;
SELECT everything FROM everywhere WHERE something = something_else;
> 1 Row Returned
> 42
GeneralRe: XML - Stripping Namespaces Pin
Aryadip11-May-04 23:29
Aryadip11-May-04 23:29 
GeneralRe: A Solution Pin
MrEyes12-May-04 2:58
MrEyes12-May-04 2:58 
GeneralRe: XML - Stripping Namespaces Pin
Heath Stewart12-May-04 3:41
protectorHeath Stewart12-May-04 3:41 
GeneralRe: XML - Stripping Namespaces Pin
MrEyes12-May-04 4:01
MrEyes12-May-04 4:01 
GeneralRe: XML - Stripping Namespaces Pin
Heath Stewart12-May-04 4:42
protectorHeath Stewart12-May-04 4:42 
Generalsending objects Pin
bouli11-May-04 21:38
bouli11-May-04 21:38 
GeneralRe: sending objects Pin
Corinna John11-May-04 22:22
Corinna John11-May-04 22:22 
Generalsending objects Pin
bouli11-May-04 21:33
bouli11-May-04 21:33 
GeneralRe: sending objects Pin
Dave Kreskowiak12-May-04 3:02
mveDave Kreskowiak12-May-04 3:02 
GeneralRe: sending objects Pin
Heath Stewart12-May-04 3:43
protectorHeath Stewart12-May-04 3:43 
GeneralRe: sending objects Pin
bouli12-May-04 4:38
bouli12-May-04 4:38 
GeneralRe: sending objects Pin
Dave Kreskowiak12-May-04 11:30
mveDave Kreskowiak12-May-04 11:30 
GeneralTo get independent Copy of the project Pin
Naga the bug fixer11-May-04 21:00
Naga the bug fixer11-May-04 21:00 
GeneralRe: To get independent Copy of the project Pin
sreejith ss nair12-May-04 1:49
sreejith ss nair12-May-04 1:49 
GeneralRe: To get independent Copy of the project Pin
Heath Stewart12-May-04 3:46
protectorHeath Stewart12-May-04 3:46 
GeneralEstimated Time Left Pin
The_Soul_Of_Rock11-May-04 20:34
The_Soul_Of_Rock11-May-04 20:34 
GeneralRe: Estimated Time Left Pin
CWIZO11-May-04 20:41
CWIZO11-May-04 20:41 

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.