Click here to Skip to main content
15,905,914 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How to access session using the instance of another page? Pin
Nouman Bhatti8-Jun-07 3:23
Nouman Bhatti8-Jun-07 3:23 
AnswerRe: How to access session using the instance of another page? Pin
Guffa8-Jun-07 8:24
Guffa8-Jun-07 8:24 
GeneralRe: How to access session using the instance of another page? Pin
Ashokkuma10-Jun-07 21:39
Ashokkuma10-Jun-07 21:39 
QuestionData formatting expression in Datagrid........................ Pin
Member 38798818-Jun-07 1:56
Member 38798818-Jun-07 1:56 
AnswerRe: Data formatting expression in Datagrid........................ Pin
Nouman Bhatti8-Jun-07 3:24
Nouman Bhatti8-Jun-07 3:24 
Questionhow to get the xml from dataset Pin
sooreeagt8-Jun-07 1:12
sooreeagt8-Jun-07 1:12 
AnswerRe: how to get the xml from dataset Pin
Sylvester george8-Jun-07 1:35
Sylvester george8-Jun-07 1:35 
AnswerRe: how to get the xml from dataset Pin
Nouman Bhatti8-Jun-07 3:29
Nouman Bhatti8-Jun-07 3:29 
a code to read xml document and display it's properties in richtextbox

------------------------------------------------------------------------
XmlTextReader srd = new XmlTextReader("e:\\newschemafile.txt");
richTextBox1.Text = "XmlTextReader Properties Test\n";
while (srd.Read())
{

if (srd.NodeType == XmlNodeType.Element)
{

richTextBox1.Text += "===================\n";
// Read this element's properties and display them on console
richTextBox1.Text += "Name:" + srd.Name + "\n";
//richTextBox1.Text += "Base URI:" + srd.BaseURI + "\n";
//richTextBox1.Text += "Local Name:" + srd.LocalName + "\n";
//richTextBox1.Text += "Attribute Count:" + srd.AttributeCount.ToString() + "\n";
//richTextBox1.Text += "Depth:" + srd.Depth.ToString() + "\n";
//richTextBox1.Text += "Line Number:" + srd.LineNumber.ToString() + "\n";
//richTextBox1.Text += "Node Type:" + srd.NodeType.ToString() + "\n";
//richTextBox1.Text += "Attribute Count:" + srd.Value.ToString() + "\n";
//if(srd.NodeType == XmlNodeType.Text)
richTextBox1.Text += "Value" + "\n";
if (srd.Name == "Parameter")
{
richTextBox1.Text += "name: " + srd.GetAttribute("name") + "\n";
richTextBox1.Text += "table: " + srd.GetAttribute("table") + "\n";
}
else if (srd.Name == "Column")
{
richTextBox1.Text += "Column Name: " + srd.GetAttribute("name") + "\n";
richTextBox1.Text += "Column Type: " + srd.GetAttribute("type") + "\n";

}
}
-----------------------------------------------------------------
Questionopenenig document in different window Pin
Sandeep Akhare8-Jun-07 0:14
Sandeep Akhare8-Jun-07 0:14 
AnswerRe: openenig document in different window [modified] Pin
Chetan Ranpariya8-Jun-07 0:22
Chetan Ranpariya8-Jun-07 0:22 
GeneralRe: openenig document in different window Pin
Sandeep Akhare8-Jun-07 0:41
Sandeep Akhare8-Jun-07 0:41 
GeneralRe: openenig document in different window Pin
Chetan Ranpariya8-Jun-07 0:58
Chetan Ranpariya8-Jun-07 0:58 
AnswerRe: openenig document in different window Pin
badgrs8-Jun-07 0:22
badgrs8-Jun-07 0:22 
AnswerRe: openenig document in different window [modified] Pin
Tom John8-Jun-07 0:24
Tom John8-Jun-07 0:24 
GeneralRe: openenig document in different window Pin
Sandeep Akhare8-Jun-07 0:39
Sandeep Akhare8-Jun-07 0:39 
GeneralRe: openenig document in different window Pin
Venkatesh Mookkan8-Jun-07 1:43
Venkatesh Mookkan8-Jun-07 1:43 
GeneralRe: openenig document in different window Pin
Sandeep Akhare8-Jun-07 4:23
Sandeep Akhare8-Jun-07 4:23 
Questionhow can i bind a datalist dynamically?? Pin
regin7-Jun-07 23:30
regin7-Jun-07 23:30 
AnswerRe: how can i bind a datalist dynamically?? Pin
Chetan Ranpariya8-Jun-07 0:27
Chetan Ranpariya8-Jun-07 0:27 
GeneralRe: how can i bind a datalist dynamically?? Pin
regin8-Jun-07 1:11
regin8-Jun-07 1:11 
QuestionWebControl SPAN tag Pin
theJazzyBrain7-Jun-07 23:18
theJazzyBrain7-Jun-07 23:18 
AnswerRe: WebControl SPAN tag Pin
Tom John8-Jun-07 0:05
Tom John8-Jun-07 0:05 
GeneralRe: WebControl SPAN tag Pin
theJazzyBrain8-Jun-07 0:48
theJazzyBrain8-Jun-07 0:48 
GeneralRe: WebControl SPAN tag Pin
Tom John8-Jun-07 3:41
Tom John8-Jun-07 3:41 
Questionunable to convert VS2003 project to VS2005 Pin
papy-boom7-Jun-07 23:04
papy-boom7-Jun-07 23:04 

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.