HI All: I am newbie, I have got basic question about C#. The question as follows: 1.What is difference between C# and C#.NET? I would be grateful, if any one...
Unless i've missed something.... nothing!! C# is one of the 100+ languages you can use with the .NET runtime, i do not believe it is possible to use C# outside...
Hai i'm a beginner in C#.NET and i'm currently working on to get the remote IPAddress of a client connected to a server. If can plz do try out for me to have...
Something must be wrong with your code... unless I still don't understand you, the following code that I'm using to try to diagnose your problem is not...
When you accept a client connection you'll have an instance of the socket used to communicate with that client. With that socket, you can grab the IP address...
Hi Nagarjuna, C# is specially designed for .NET. I don't think you can use C# without .NET runtime !!! regards, Rama. Nagarjuna C <nagarjunac@...> wrote: ...
Hi, I have a method in a WebService that receives a string. I know this string will be well formatted XML (although I will perform error checking). I want to...
O'Neill, Ciaran
Ciaran.O'Neill@...
Feb 1, 2005 4:09 pm
9643
Its OK. I got it using a StringReader. ... ********************************************************************** This email and any files transmitted with it...
O'Neill, Ciaran
Ciaran.O'Neill@...
Feb 1, 2005 4:09 pm
9644
As an alternative to a DataSet, you could load the XML string into a XmlDocument and use XPath. It would depend on if you needed a 'recordset' or could work...
Thanks for the example and it illustrates what I was saying below. I must be a problem with my code. Damn. That's not damn that I was wrong, but damn I have to...
I totally with you Paul,,,, ,,,,, I too have developed in ASP since the year 2000. And have a better grasp ASP.Net than colleges that jumped into .net without...
Actualy brian what I find in the documentation is this list of examples of valid version strings. Examples of valid version strings include: 1 1.1 1.1.* 1.1.1 ...
Taken directly from the "about AssemblyVersionAttribute" entry in the .NET 1.1 SDK docs: You can specify all the values or you can accept the default build ...
Hi, I am trying to execute a stored procedure that updates a table's record and then does SELECT to retrieves that table's records after the update. However, I...
Hi, What possibley can cause the Response.Write not to write to an aspx page? knowing that it's not throwing an error....so why? [Non-text portions of this...
Rule out the obvious first, is the line being executed? In other words, did the function exit before your Response.Write? ... From: johnsmith2797480@... ...
If you're updating a record then you already have the data, is it necessary to re-query the database? If it is, I would make (and execute) separate update and...
Here is an example stored proc and code that updates and then selects: CREATE TABLE [Project] ( [id] [int] IDENTITY (1, 1) NOT NULL , [name] [char] (30) NOT...
Hi All, I am developing a windows application in C#. I am making use of datagrid control to display few data from database. I have to display 5-6 columns from...
I want to use a repeater to display a button for every item in the cache. Each button should have the key of the cache object as its Text property and it...
Hi Friend, I am not aware of web services but the error is familiar to me. So i thought of giving my suggestion to you. See if it helps. Login Failed for user...
hai, u can use datagrid1.datasource=ds.tables[0] instead of datagrid1.datasource=ds regards vinu Yahoo! India Matrimony: Find your life partneronline. ...
For testing / learning purposes the default datagrid is fine to use for this purpose, however, apart from in a readonly situation (and then with some serious...
In a message dated 02/02/2005 09:34:02 GMT Standard Time, john_cool9@... writes: Below is my reply to both Brian and Raj... Hi Friend, I am not aware of...
In a message dated 02/02/2005 09:34:02 GMT Standard Time, john_cool9@... writes: Hi, This is my reply to both, Brian, and Raj, Hi Friend, I am not aware...
You didn't set the property correctly. I told you to turn OFF the integrated security/trusted_connection. You're logging in as the ASPNET account because you...