Software Development Network Logo
  • VS Team System
  • .NET Development
  • Visual J#
  • Visual FoxPro
  • Windows Live
  • VS Express Editions
  • Windows Vista
  • Windows Forms
  • Visual C#
  • Architecture
  • Visual Basic
  • Game Technologies
  • Visual C++
  • Visual Studio
  • Microsoft ISV

Software Development Network >> .NET Development

.NET Development

New Question

an datetime problem, please have a look:)
general configuration: runtime
Problem in converting byte[]to stringBuilder
XML & XSL Presentation
TableAdapter auto-generated code not working in VS 2005
How to create web service extension for ASP.NET 2.0
Binding a dropdown listbox
Compatibility: Duplicate delegates generated
What do you if you need multiple CAS permissions asserted at the same time?
How to connect to internet using dialup

Top Answerers

kadir43244
Nix_o_lay
Sewoodford
RWBitters
rome
olutayo79
David Gorsline
Rudy W.
Swadow
flobadob
Walter Bright Page
Only Title

Answer Questions

  • Mark Sutton Encrypting sections of Web.Config

    I have a websever running IIs 6.0 and the .Net 2.0 framework. I'm trying to encrypt sections of a web.config file on one of the websites that I host on this server. I have about 20 different websites each with their own IP address. From several MSDN docs and posts here and there I've learned that I can use the aspnet_regiis command to encrypt certain sections of my web.config. I'd like to encrypt the sections that contain passwords - such as ...Show All

  • n8dagr8 MS NET FRAMEWORK 1.1

    Hi there, I know this is going to sound so stupid to you whizz kids. And it probably is stupid. But i am totally desperate to find out why i cant install the above subject matter. Your help and advice is desperately needed as i havent a clue what i am doing wrong I cant install ms net framework, it keeps on coming up: EXTRACTION FILE FAILED: IT IS MOST LIKELY CAUSED BY LOW MEMORY(LOW DISK SPACE FOR SWAPPING FILE) OR A CORRUPTED CABINET FILE. I h ...Show All

  • ohca Syntax error in UPDATE statement. at

    Error Message System.Data.OleDb.OleDbException: Syntax error in UPDATE statement. at System.Data.OleDb.OleDbCommand.ExecuteCommandTextErrorHandling(Int32 hr) at My Code don't know what is wrong. Its just killing me strSQL = "Update tblCustomerDetail sett [strFullName]=@strFullName,[strAddress1]=@strAddress1,[strAddress2]=@strAddress2,[strCity]=@strCity,[strState]=@strState,[strZip]=@strZip,[strCountry]=@strCountry,[strPhoneNumber]=@st ...Show All

  • Beetle54 .Net 2.0 release version breaks VS 2005b2?

    I have just upgraded my .Net frameworks to 2.0 release version, and in the process, I had to uninstall the previous beta version and also some other stuff like the compact framework. Now, Visual Studio beta2 is not launching anymore. Is this a known issue With kind regards. >They are released together. That is great news! Can you tell me where I can download or purchase the released version of C# Express T ...Show All

  • samclng Y New Class. How can i made it?

    Hello, i want make a Control for me. A Control what have some Panels inside. (like TableLayoutPanel). The Panel at Top have a Label inside that shows the Caption. The Panel at bottom you can use as Panel and can have other controls inside. I made one with a UserControl. But the BottomPanel don’t want work. I can’t put other controls inside. How can i do this Thanks Thanks, thats work. Now (i ...Show All

  • lozinski DataGridView Columns

    In DataGridView Columns are not coming in order while accessing data from database.Please any one help me. Thanx Dear Michael , I have got table "Employee" having fields as SSN | Name | First Address | Second Address | Phone | Introduced People. While accessing this data in my project in DataGridView this is coming in following order Phone | Name | Introduced People | Second Address |SSN | First Address . ...Show All

  • James V Calling a WebReference operation name the same as the Web service name

    In the WSDL below, the Web Service is "CalcService" and it contains an operation also called "CalcService". When adding a WebReference to this WSDL, the proxy generated (CalcService class) contains a "CallCalcService" method for the "CalcService" operation - persumeably because a method "CalcService" would be mistaken for a constructor. Calling the "CallCalcService" method tries to invoke a "CallCalcService" operation on the Web Service, wh ...Show All

  • hippofear Mht Email (Html Archive)

    It is possible (out of the box) to send Mht email now in .NET 2.0 I've taken a look at LinkedResource & AlternateView and I'm able to send out emails. However, there is no documentation on what is going on behind the scenes. If this feature is something you beleive you could leverage in your future applications (ie. create an HTML mail by referencing a .mht file), please write to us and let us know why you ...Show All

  • Michael Barrett The Undo operation encountered a context that is different...

    This is not specific enough information for me to know what I did wrong and where. Does anyone have any insight to this It appears to have something to do with asynchronous socket I/O completion. System.Transactions Critical: 0 : <TraceRecord xmlns="http://schemas.microsoft.com/2004/10/E2ETraceEvent/TraceRecord" Severity="Critical"> <TraceIdentifier>http://msdn.microsoft.com/TraceCodes/System/ActivityTracing/2004/07/Re ...Show All

  • annag Engine R&D

    hi, i am chong, i am a C# developer. Currently, i am doing a research and develop a project. This project architecture is i need to develop a distribute engine to collect the data from the server and transfer the data to a centralized server to process. The question here is the communication between the engine and the server is either upstream or downstream (Note: My upstream meaning is when the engine getting any data, it straight foward to the ...Show All

  • Pubsnack TableAdapter insert/update/delete order

    I have a typed-dataset with a dozen or so tables which are hooked together with typical on-to-many and many-to-many relationships. I'm using table adapters to do the CRUD actions. For updates I was using: //Update parent tableadapter_parent.Update(dataset.parenttable); //Update child tableadapter_child.Update(dataset.childtable); But I am getting foreign key reference errors when deleting records because the adapter is trying to dele ...Show All

  • David P Maynard Appending from file to file

    Hi, Im having a lil problem with 2 xml files. Im trying to append from file to file with C#. One xml file is on my pc, the other one is on the server. The xml file on the server gets input for appointments. They look like this: [code] < xml version="1.0" standalone="yes" > <Agenda> <Appointment> <Id> 1 </Id> <Date> 20060604 </Date> <Time> 120000 </Time> <Subject> whatever </Subje ...Show All

  • &amp;#214;mer KAYA SQL Dataset changes aren't written to database

    Hello! I'm a newb so bear with me. Also, I hope I'm in the right forum. I am trying to take the values from textboxes and write them to a database. The information seems to be assigned (ie. Displaying newCarsRow.Model in a MessageBox gives me the value entered into the corresponding textbox), but the changes aren't written to the database. Something tells me the fix may be simple, because I haven't completely grasped how to work with databases. ...Show All

  • Nima Amin How is a true GetHashCode() possible . . .

    Consider this base class: public abstract BaseClass<T> : IEquatable<BaseClass<T>> where T : IComparable<T> { public T Id { get { ... } } protected BaseClass(T id) { ... } public override bool Equals(BaseClass baseClass) { return (Id.CompareTo(baseClass.Id) == 0); } public int GetHashCode() { return Id.GetHashCode(); } } This is a valid implementation of GetHashCode because: If ...Show All

  • hanray .NET 2.0 Error

    I have created a webservice at the location //localhost/WebSite using VS 2005 Beta 2. The webservice contains nothing but the helloWorld web method. When I run a debug I get a server unavailable error in IE and the following in the event viewer: Warning: Failed to initialize the AppDomain:/LM/w3svc/1/ROOT/WebSite Exception: System.Web.Hosting.HostingEnvironmentException Message: Failed to access IIS metabase. Error: Failed to execut ...Show All

242526272829303132333435363738394041

©2008 Software Development Network

powered by phorum