microsoft.public.dotnet.faqs Archive - February 2002
Post a message to this list
Messages
Page: 1
encrypt & decrypt data on different machine (3 replies)
microsoft.public.dotnet.faqs
Hi, In fact, I have posted a similar topic before but I think I should give a clearer scenario. There're 2 machines, some applications (maybe console program or web application) in machine A will encrypt data it generated with public key from machine B, then a program in machine B can get the encrypted data and decrypt by its private key. Currently, I'm using RSACryptServiceProvider for implementi...
A weird little techniqe, is it possible? (6 replies)
microsoft.public.dotnet.faqs
Is it possible to get a property to become a shortcut to a private object? Example... I create a new class inheriting Panel() and in it I have a Table() called myTable. This table will only ever have 1 row so from outside I don't want to bother including that row when using it I want to call.... myTable.Columns[3].Controls.Add(new LiteralControl("Something here")); ....and that will actually do th...
STILL NOT ANSWERED, AGAIN: Remote Debugging, Windows XP (4 replies)
microsoft.public.dotnet.faqs
This is the third time I've posted this. Does anyone know the answer one way or another? Has anyone been able to set up remote debugging between two XP machines that are not part of a domain? I can't get remote debugging to work with Windows XP, and I wonder if it's just impossible. The machines are in workgroup mode, not part of a domain. I have added a user called "Scott" to the Debugger Users g...
Bottle neck server (4 replies)
microsoft.public.dotnet.faqs
the following example on www.asp.net http://www.aspfree.com/quickstart/aspplus/samples/webforms/intro/CS/intro7.a spx uses calender control To quote : The Calendar control in this sample has been designed to perform "uplevel like" processing on Internet Explorer 5.5 and "downlevel" processing on all other browsers. This browser sniffing is nowhere near as complex as that provided by the ASP.NET bu...
web browser control (2 replies)
microsoft.public.dotnet.faqs
How i can use web browser control in a .net application.
Deployment (2 replies, VIP)
microsoft.public.dotnet.faqs
I am in need of some assistance: I have developed a .net web application that I need to upload to a premium brikster memebership ( with sql ) support. Ive uploaded the pages, but would like to upload the database to the brikster sql database manager. It seems like i need to export the file and somehow inport in. Is there an easier way? if not, what is the best export file format I can use? ANY ins...
Web Host (2 replies, VIP)
microsoft.public.dotnet.faqs
Hi, can anyone recomend a web host in the uk that supports asp.net? Thanks Shaun
Creating ASP on DOTNET (2 replies)
microsoft.public.dotnet.faqs
Is it possible for me to create ASP pages using MDE2002? The issue I am facing is that our server is NT4, running ISS. I understand the DOTNET framework is not supported on NT4, so I need to create ASP and not ASP.NET pages. How can I do this, or is there another option?
Which way is best? (4 replies)
microsoft.public.dotnet.faqs
The main problem of using ASP.NET I find is that with the multiple ways of doing things how do you decide which one to use? My current issue is with holding data while in process, after loading but before rendering. My news data gets loaded into a DataTable (so it can be displayed in my DataList) so in my Common.Data namespace I have a class called NewsTable which inherits directly from DataTable,...
Command line argument parsing class? (3 replies)
microsoft.public.dotnet.faqs
Is there a class to parse command line arguments in the framework? I've dug around and can't find one. If not, MS please add one. It's one of those things that most developers need (like regexps thank you) and has never been provided (Java, ANSI C , etc.). One good example is Brad Appleton's C cmdline package: http://www.enteract.com/~bradapp/ftp/src/libs/C /CmdLine.html Chris Sells also has packa...
Best Books (3 replies)
microsoft.public.dotnet.faqs
I am looking for recommendations for the best book(s) to buy for ..NET related programming. In particular, any book(s) in the following categories: .NET webservices ADO COM C# Thanks, Tom
Aspect Oriented Programming (a Hot Topic) (3 replies)
microsoft.public.dotnet.faqs
Hello Aspect Oriented Programming is now a hot topic, is there someone out there going to create a news group for it. At the monent we have: AspectJ (Java), AspectC (C ) AspectC (C language). and others which I do not know about. Are we going to have AspectNet or AspectSharp? TIA Yaz
using three slashes /// (21 replies)
microsoft.public.dotnet.faqs
Greetings all How can I get use of that three slashes /// auto comment feature which on top of every declaration puts something like: /// summary /// /summary /// param name "param" Description /param /// returns /// /returns public void function(string param) { } Where can I use it ? Build context, XML based help file ? Regards Radek
How to check the state of the Shift, Ctrl and Alt keys in a mouseevent. (6 replies)
microsoft.public.dotnet.faqs
Hi, Does anybody know how I can check the state of the Shift, Ctrl and Alt keys in a MouseEvent (MouseDown, MouseUp, MouseMove). They all get a MouseEventArg passed. But none of the MouseEventArgs give info on the state of these keys. TIA Stefan
How should my tiers interact? (4 replies)
microsoft.public.dotnet.faqs
Splitting up my tiers made me create a class in each tier for each section of my site (News, Feedback, Members). My current plan is as follows, please give me suggestions... I have Rebent.DataAccess.NewsAccess.LoadNews() which returns a DataSet (I may change that to a DataAdapter if I get no objections). I have Rebent.Business.NewsProcessort.PreRenderNews() that returns a DataSet. I have Rebent.We...
Posting again as No-Reply to my earlier post since 3 days.............. (2 replies)
microsoft.public.dotnet.faqs
How to get a new page while being in a loop??? The following is a complete illustration of what i am asking... public void Print Parts(object sender, PrintPageEventArgs ev) { Font font new Font("Arial",10); yPosition 0; foreach(Part part in new PartHome().FindAllParts()) { ev.Graphics.DrawString(part.PartName, font, new Point(0,yPosition)); yPosition font.Height 2; if(yPosition maximumAllowbleY) {...
How to report an error when service is started? (5 replies)
microsoft.public.dotnet.faqs
Hi there, I'm developing a service application in C#. So far I'm doing fine. I have one question though: How do I report an error in OnStart? Thank you, Markus
C# to VB.Net (4 replies)
microsoft.public.dotnet.faqs
Hello I am not sure whether this is the right news group, how can I translate this: IFormattable formattable arg as IFormattable (C# Syntax) Dim IFormattable as formattable arg as IFormattable (VB.NET Syntax)? Does not like the VB.NET syntax, any idea!! TIA Yaz
VB.NET or C#? (29 replies)
microsoft.public.dotnet.faqs
I'm sure there is probably some debate out there, and could be just a matter of preference, but I was wondering if anyone knows of any good resources (or has comments) on what language is the best to go with. I'm familiar with VB6 and would like to know how each compares when it comes to... learning curve (for VB6 developer with no C knowledge, very little Java) power acceptance in the industry ti...
Are any changes need to make IIS secure? (4 replies, VIP)
microsoft.public.dotnet.faqs
I'm running Win2000 Pro, and I'm going to install IIS from my Windows CD before I install VS.NET so that I can play with asp.net (I haven't used ASP or IIS before). Are there any changes I need to make to the default settings to make sure that I'm not exposing myself to any security vulnerabilities? Other than ensuring that I have the latest security patches from windowsupdate, is the default conf...
? XML SERIALIZATION of a RECTANGLE ? (3 replies)
microsoft.public.dotnet.faqs
When serializing a Rectangle, how can I specify that I only want {X,Y,Width,Height} and NOT the duplicate {Location & Size} info included? aRectangleTypeVaraible Location X 0 /X Y 0 /Y /Location Size Width 15 /Width Height 17 /Height /Size X 0 /X Y 0 /Y Width 15 /Width Height 17 /Height /aRectangleTypeVaraible Thanks so much! Steve
Is XslTransform.Transform thread safe? (2 replies)
microsoft.public.dotnet.faqs
Is XslTransform.Transform thread safe? Can I run several calls to Transform running at the same time? Jonathan Allen
405 Method not allowed (3 replies)
microsoft.public.dotnet.faqs
Hi, I'm trying to POST a file to an IIS website on my local machine. Everytime I try it I'm getting "405 Method not allowed". I've set IIS permissions to read and write and even set the NTFS permissions to Everyone (read write.. Everything!!!), but I still get the error. Here's the code: Dim myWebClient As New WebClient() Dim fileName As String "C:\401293.gif" myWebClient.UploadFile("http://localh...
Overridable (3 replies)
microsoft.public.dotnet.faqs
Hello I have a base class where I have two methods called Save that I declare as Overridable. I have another class thta inherits from the baseclass and I override the save method. I am getting an error, the compiler in VB.Net complains that I need to use shadow. Whereas doing the same thing in C# there are no problems. Any idea how I can overcome this problem Thanks Yaz
Ad
MBR BootFX
Best-of-breed application framework for .NET projects, developed by Matthew Baxter-Reynolds and MBR IT
 
 Copyright © Matthew Baxter-Reynolds 2001-2008. '.NET 247 Software Development Services' is a trading style of MBR IT Solutions Ltd.
Contact Us - Terms of Use - Privacy Policy - www.dotnet247.com