Click here to Skip to main content
15,921,467 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: ASP.net replacement for VB.net code? Pin
thomas_joyee22-Feb-07 22:03
thomas_joyee22-Feb-07 22:03 
QuestionRe: ASP.net replacement for VB.net code? Pin
.NetRams22-Feb-07 23:02
.NetRams22-Feb-07 23:02 
AnswerRe: ASP.net replacement for VB.net code? Pin
thomas_joyee22-Feb-07 23:28
thomas_joyee22-Feb-07 23:28 
AnswerRe: ASP.net replacement for VB.net code? Pin
badgrs23-Feb-07 1:10
badgrs23-Feb-07 1:10 
QuestionAmbiguous match found. Pin
Deepak the Cool22-Feb-07 18:26
Deepak the Cool22-Feb-07 18:26 
AnswerRe: Ambiguous match found. Pin
Harini N K22-Feb-07 18:38
Harini N K22-Feb-07 18:38 
GeneralRe: Ambiguous match found. Pin
Deepak the Cool22-Feb-07 19:18
Deepak the Cool22-Feb-07 19:18 
AnswerRe: Ambiguous match found. Pin
Tuwing.Sabado22-Feb-07 18:58
Tuwing.Sabado22-Feb-07 18:58 
The most common senario about Ambiguous match found when you declared a variable for a specific datatype like the XML which exist in two different namespace. This was common when the type of project you have is WEB because by default the two namespace for XML are referenced, System.Web.UI.WebControls.Xml And System.XML


This code will generate Ambiguous match found.

*VB <br />
Dim myXML AS XmlDocument = New XmlDocument()<br />
<br />
*C#<br />
XmlDocument myXML = new XmlDocument();


Be more specific in namespace to prevent Ambiguous error.

*VB <br />
Dim myXML AS System.Xml.XmlDocument = New System.Xml.XmlDocument()<br />
<br />
*C#<br />
System.Xml.XmlDocument myXML = new System.Xml.XmlDocument();


OR

*VB <br />
Dim myXML AS WebControls.Xml.XmlDocument = New WebControls.Xml.XmlDocument()<br />
<br />
*C#<br />
WebControls.Xml.XmlDocument myXML = new WebControls.Xml.XmlDocument();

Questioncall script in content page. Pin
Imran Khan Pathan22-Feb-07 18:01
Imran Khan Pathan22-Feb-07 18:01 
AnswerRe: call script in content page. Pin
Michael Sync22-Feb-07 18:09
Michael Sync22-Feb-07 18:09 
AnswerRe: call script in content page. [modified] Pin
Tuwing.Sabado22-Feb-07 18:14
Tuwing.Sabado22-Feb-07 18:14 
GeneralRe: call script in content page. Pin
Imran Khan Pathan22-Feb-07 19:07
Imran Khan Pathan22-Feb-07 19:07 
GeneralRe: call script in content page. Pin
Tuwing.Sabado22-Feb-07 19:17
Tuwing.Sabado22-Feb-07 19:17 
GeneralRe: call script in content page. Pin
Imran Khan Pathan22-Feb-07 20:00
Imran Khan Pathan22-Feb-07 20:00 
GeneralRe: call script in content page. Pin
Tuwing.Sabado22-Feb-07 21:13
Tuwing.Sabado22-Feb-07 21:13 
GeneralRe: call script in content page. Pin
Imran Khan Pathan22-Feb-07 22:28
Imran Khan Pathan22-Feb-07 22:28 
GeneralRe: call script in content page. Pin
Tuwing.Sabado22-Feb-07 22:53
Tuwing.Sabado22-Feb-07 22:53 
GeneralRe: call script in content page. Pin
Tuwing.Sabado22-Feb-07 22:58
Tuwing.Sabado22-Feb-07 22:58 
GeneralRe: call script in content page. Pin
Imran Khan Pathan22-Feb-07 23:41
Imran Khan Pathan22-Feb-07 23:41 
GeneralRe: call script in content page. Pin
Tuwing.Sabado22-Feb-07 23:47
Tuwing.Sabado22-Feb-07 23:47 
GeneralRe: call script in content page. Pin
Imran Khan Pathan23-Feb-07 0:05
Imran Khan Pathan23-Feb-07 0:05 
AnswerRe: call script in content page. Pin
Harini N K22-Feb-07 18:16
Harini N K22-Feb-07 18:16 
GeneralRe: call script in content page. Pin
Imran Khan Pathan22-Feb-07 19:02
Imran Khan Pathan22-Feb-07 19:02 
QuestionHow to show only my posted Questions Pin
siddisagar22-Feb-07 17:32
siddisagar22-Feb-07 17:32 
AnswerRe: How to show only my posted Questions Pin
Tuwing.Sabado22-Feb-07 17:50
Tuwing.Sabado22-Feb-07 17:50 

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.