Answer Questions
danieljsamson Problem coming during deploying asp.net application throgh Copy option
Hi, I am trying to use copy option to deploy my asp.net application.I have user controls in the project inside UserControls folder.I am able to copy the whole project on server but it is not copying the user controls inside the UserControl folder.It just create a folder by the name of User control.I have other folders also in that project(e.g.images.documents).It is copying everything inside them but not copying User controls.I am not able to ...Show All
Telesto Does ViewState get validated/authenticated when enableviewstate=false?
I need help. I am a contractor web developer here in CA working at a company where the production environment comprises two web sites located on two separate networks (the first owned by the company, and the second is hosted by a second-party company). The two web sites have the same domain name but different IP addresses on the DNS on the internet, and there is no load balancing mechanism in place, so a request could go to either IP address. An ...Show All
JohnCNTS How to Write Raw Hex to a File?
How can I output raw hex codes to a file When I do (StreamWriter)w.Write((Int8)65); I get the string "65" in the file, but I expected the letter "A" (ascii 65). Your problem is that StreamWriter is for writing text files and therefore will convert everything to text before writing it out. I would recommend that you instead cast the value to a char . This causes the writer to write out the character ...Show All
Andy_1979 xml serialization problem
hi! I am new to xml serialization so please bear with me. Ilya on the smart device forum gave me a huge hand in guiding me to the right direction. What I want to do is serialize objects so I can transport it across a network (PC to mobile) running .NET 2.0. I have followed: http://msdn.microsoft.com/library/default.asp url=/library/en-us/cpref/html/frlrfsystemxmlserializationxmlserializerclasstopic.asp ...Show All
Peter N Roth Call center application(asp.net,sqlserver C# )
Does any body have an idea about a Call center application(asp.net,sqlserver C# ) which will save information about incoming and outgoing calls in the sql server database. Please Refer to me any idea or any link from which I start my R & D.Then start building the project.Thanks in advance. Wish You All Success. Kamran Shahid Thanks Good informative link Shannon.One thing I also ha ...Show All
DeepaSubramanian XmlSerializer vs SoapFormatter
Hi, XmlSerializer can serialize data to a file, but SoapFormatter can do the same except that the serialized data in the file is not proper Xml : for instance there is no XmlRoot-element. Why then use SoapFormatter at all thanks Chris http://www.topxml.com/soapformatter/SoapFormatter_vs_xmlserializer.asp ...Show All
sadyc Sent EMail Good to a Domain That Cannot Be Looked up on DNS - How is that possible?
I am writing an .NET e-mail client program. I am checking the e-mail address's domain name via a DNS lookup before I send an e-mail. Consider: person@att.net While I can sent e-mail to person@att.net , "att.net" does not exist on the domain name server. What concept am I missing How can any program find a computer by name "att.net" without going through DNS Brian ...Show All
Witzbold End Asyncronous Task?
Is it possible to end an asyncronous task before the actual end criteria has been met I'm desperate! If you really need to end an async task immediately you can close the socket or, if you are using FTP or HTTP web request you could dispose the object. I was actually looking to end the asychronous task early so I could read a network stream on a blocking basis and then resume the asyncronous task straight ...Show All
HairyDan General Info on dotnet
Hi. I'm only a user of dotnet and not a developer, so the Q I have will probably be very basic to u guys, but I cant seem to find the answer anywhere else. How do i find out which version of the dotnet framework is currently installed on my system It doesent appear in any of the usual places. ie:- installed programs, msinfo32 etc... Also, everytime I install dotnet, autologin gets disabled even tho i'm the only user. Is there a way ...Show All
hantana .NET Framework 2.0 Profiling API question
Hi, Currently my company is developing a .NET profiler. I'd appreciate a lot if you could shed a light on the following issue. Via the profiling API we are trying to write memory heap snapshot. In particular, we need to know values of static fields of loaded classes, to be able to analyze reasons of possible memory leaks. At the moment we didn't manage to find appropriate means to retrieve the values for given class ID and (static) field ID. & ...Show All
DaveM. How can I do this?
Hi, I have an abstract class, and some inheritant classes, in order for the abstract class methods implementation (these methods make sql operations) to work I need to idenfity from which class the method is beign called. Doing it this way could save a lot of code (instead of implementing an interface in each class) Is this possible , is there any other way to make this Not exactly, I'm looking for a way to ...Show All
Wim Bouma custom Login control?
i want to increase one field into dbo.aspnet_Membership.update table and over loading Membership.CreateUser method how can i write the CrateUser. thanks. ...Show All
Jesse Anderson .NET Framework 2.0 Beta 2
Tried Installing .Net Framework 2.0 Beta 2 on Win 2003 ( no service pack 1) , and the installation crashes so can't actually install it. I think I use to have .NET Framework 2.0 either Beta 1 or Beta 2 not to sure, installed prior, I did completely remove it , before installing again. Hi, See if a folder exists in \windows\microsoft.NET\Framework\ that starts with v2.xxxx. Delete the 2.x folder if it exis ...Show All
Don Crawford Quick SQL question
I am trying to build manually the UPDATE, INSERT and DELETE strings of my OdbcDataAdapter because the ones generated by the OdbcCommandBuilder are not going to be adequate. I will still be starting from the generated strings and build on them. To understand better what they do, I need to interpret a specific SQL predicate, and I am having trouble with an expression within. The following SQL command is supposed to ensure that a row in a table is ...Show All
mjeter Access Violation when doing BeginReceive on a UdpClient
I'm attaching some code below which demonstrate my troubles. In short, I get an Access Violation thrown when doing BeginReceive after trying to Send() data to a port thats not listening (using UDP). My observations this far: Add a Sleep() between the Send() and BeginReceive(), and you get a SocketException thrown at BeginReceive() instead of the Access Violation Send to localhost, or a host on the same lan (or close, in terms of hops ...Show All
