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

C#

 
GeneralViewing Exported Functions and Parameters in a DLL Pin
Mr. Rogers13-Jul-04 4:22
Mr. Rogers13-Jul-04 4:22 
GeneralRe: Viewing Exported Functions and Parameters in a DLL Pin
Heath Stewart13-Jul-04 4:33
protectorHeath Stewart13-Jul-04 4:33 
GeneralRe: Viewing Exported Functions and Parameters in a DLL Pin
Mr. Rogers13-Jul-04 4:51
Mr. Rogers13-Jul-04 4:51 
QuestionHow to get the time from a computer Pin
Stuggo13-Jul-04 4:11
Stuggo13-Jul-04 4:11 
AnswerRe: How to get the time from a computer Pin
Heath Stewart13-Jul-04 4:20
protectorHeath Stewart13-Jul-04 4:20 
GeneralResponse.Redirect is not working.. a peculiar problem..One solution found !! Pin
PhaniKatakam13-Jul-04 2:07
PhaniKatakam13-Jul-04 2:07 
GeneralRe: Response.Redirect is not working.. a peculiar problem..One solution found !! Pin
Heath Stewart13-Jul-04 4:13
protectorHeath Stewart13-Jul-04 4:13 
GeneralAccessing HTML control Pin
Padmavathi13-Jul-04 1:26
Padmavathi13-Jul-04 1:26 
I am creating a web page in C# using XML and XSLT. I am able to access the web controls but I am unable to access the 'file' control.

I am using the code in C# like this

XPathDocument ctrlCategoryDoc = new XPathDocument(Server.MapPath("XML/NewCategory.xml"));
XPathNodeIterator itr = ctrlCategoryDoc.CreateNavigator().Select("//Ctrl");
System.Text.StringBuilder sb;
sb = new System.Text.StringBuilder();
// foreach Ctrl
while (itr.MoveNext())
{
// get the control name
string controlName = itr.Current.GetAttribute("name", "");
sb.Append(controlName);
sb.Append(" : ");
// get the control
object ctrl = FindControl(controlName);
}

the object 'ctrl' contains name of the control in case of web control but in case of html control () it is giving undefined value.

can anyone tell me the solution for this
GeneralRe: Accessing HTML control Pin
Heath Stewart13-Jul-04 4:07
protectorHeath Stewart13-Jul-04 4:07 
GeneralProblem when Distributing A C#.Net Application Pin
Axonn Echysttas13-Jul-04 1:23
Axonn Echysttas13-Jul-04 1:23 
GeneralRe: Problem when Distributing A C#.Net Application Pin
Heath Stewart13-Jul-04 3:56
protectorHeath Stewart13-Jul-04 3:56 
GeneralRe: Problem when Distributing A C#.Net Application Pin
Axonn Echysttas13-Jul-04 5:19
Axonn Echysttas13-Jul-04 5:19 
GeneralRe: Problem when Distributing A C#.Net Application Pin
Heath Stewart13-Jul-04 5:24
protectorHeath Stewart13-Jul-04 5:24 
GeneralRe: Problem when Distributing A C#.Net Application Pin
Axonn Echysttas13-Jul-04 5:49
Axonn Echysttas13-Jul-04 5:49 
GeneralRe: Problem when Distributing A C#.Net Application Pin
Heath Stewart13-Jul-04 6:09
protectorHeath Stewart13-Jul-04 6:09 
GeneralRe: Problem when Distributing A C#.Net Application Pin
Axonn Ech.13-Jul-04 10:50
sussAxonn Ech.13-Jul-04 10:50 
Generalhowto to implement SOAP in C# Pin
Stephan Wright13-Jul-04 0:47
Stephan Wright13-Jul-04 0:47 
GeneralRe: howto to implement SOAP in C# Pin
Roman Rodov13-Jul-04 1:18
Roman Rodov13-Jul-04 1:18 
GeneralRe: howto to implement SOAP in C# Pin
Stephan Wright13-Jul-04 1:36
Stephan Wright13-Jul-04 1:36 
Generalproblems with importing Outlook contacts Pin
Stephan Wright12-Jul-04 23:58
Stephan Wright12-Jul-04 23:58 
GeneralRe: problems with importing Outlook contacts Pin
Heath Stewart13-Jul-04 4:26
protectorHeath Stewart13-Jul-04 4:26 
GeneralRe: problems with importing Outlook contacts Pin
Stephan Wright13-Jul-04 22:38
Stephan Wright13-Jul-04 22:38 
GeneralRe: problems with importing Outlook contacts Pin
Heath Stewart14-Jul-04 3:13
protectorHeath Stewart14-Jul-04 3:13 
GeneralSNTP Class Pin
don7cry12-Jul-04 21:46
don7cry12-Jul-04 21:46 
GeneralRe: SNTP Class Pin
Heath Stewart13-Jul-04 5:13
protectorHeath Stewart13-Jul-04 5:13 

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.