ASPFriends.com 'aspngfreeforall' list Archive - December 2001
Messages
Page: 1234567891011
other bin dir (2 replies)
ASPFriends.com 'aspngfreeforall' list
I'm trying to specify another bin directory but it can't load the assemblies. Anyone ever tried this in web.config? runtime assemblyBinding xmlns "urn:schemas microsoft com:asm.v1" probing privatePath "bin2" / /assemblyBinding /runtime Bruno Carlos www.flesk.com
Where Do I Begin (8 replies)
ASPFriends.com 'aspngfreeforall' list
Well, I have studied quite a bit of online resources and have consumed 11 visual basic.net & asp.net books. I understand reasonably well the code behind, web.config configuration, coding, UML planning and SQL (at least enough to begin my own project) My question: Where do I begin? Could an experienced developer either point me to a resource or share with me the application development process (min...
Mobile Computing (2 replies)
ASPFriends.com 'aspngfreeforall' list
I have downloaded Beta2 Version of .Net. I wonder how I could know that it also supports mobile computing? Where should I find the add ins? Thanks
How to determine if session string is null? (2 replies)
ASPFriends.com 'aspngfreeforall' list
1. In ASP 3.0 I took advantage of the fact that a non defined session string was always empty (null). 2. In ASP.NET, I get an error if I try to access a null session string. 3. So how can I determine if a session string is null? The following does not work: if((Session["theDisplay"]).ToString().IsNull) { ... } Thanks, Edward Tanguay Free Workshop: How to Install Apache, MySQL, PHP on Windows http:...
active directory (4 replies)
ASPFriends.com 'aspngfreeforall' list
Does anyone know of a way to validate a user logon (username and password) against the entries in a ActiveDirectory service. On my network I have a AD server which I want to use to store my userdata. I can get access to all data, but I can't make a password check against this data. I don't want to use NT authentication. The pages use FormsAuthentication.  
hungarian notation for dotnet (2 replies)
ASPFriends.com 'aspngfreeforall' list
Hey can anyone help with finding a naming convention that I can use for dotnet. Thanks a lot P.S you can email to me if possible, David winslow
IIS Virtual Directories (6 replies)
ASPFriends.com 'aspngfreeforall' list
Hi ppl... This is slightly off topic but still related to ASP.NET in a round a bout way and I also do not know where else to post this so here goes :) I have just re installed my OS after formatting my HDD. I now have the tedious task of setting up all the virtual directories for my ASP.NET projects. Does anyone know how to create them using scripts so if this happens again, I just have to run my ...
which collection is best for dropdownlist management? (3 replies, VIP)
ASPFriends.com 'aspngfreeforall' list
1. I'm trying to find an easy way to manage little lists for dropdowns, radio buttons, etc., for instance with an array, something like this: string[] countries new string[4]; countries[0] "Germany"; countries[1] "France"; countries[2] "Austria"; countries[3] "Belgium"; 2. In my code, I want to be able to do this: showCountries.SelectedIndex countries["France"]; or: showCountries.SelectedIndex cou...
Disable controls (3 replies)
ASPFriends.com 'aspngfreeforall' list
Hi, Does anyone know how to disable controls on the client side only (i.e. Disable a button (on the button click). Thank you, Rimma Do You Yahoo!? Send your FREE holiday greetings online! http://greetings.yahoo.com
ToolBox Problem (4 replies)
ASPFriends.com 'aspngfreeforall' list
All of a sudden all of the Icons (ie datagrid, listbox, etc) have disappeared from by visual studio toolbox leaving only a tag which says:"Pointer" . This occurs in all of the tabs: Webforms, Components, Data etc. I have tried running a repair on VS with no success. I would really prefer not to delete and reinstall as that would take a very very long time with RC1. Thanks Brandon
Namespace and class name conflicts. (4 replies)
ASPFriends.com 'aspngfreeforall' list
Hi, I just create a simple C# object inside the name space 'MyNameSpace' and called the class 'myClass' . I compiled the class and to a library (dll) and called the dll 'test'. I then changed the class a little in the source file and recompiled it under the same class and namespace names and gave the resulting dll another name. How does the .NET framework know which is the correct dll since they b...
displaying a variable in a .ascx file (3 replies)
ASPFriends.com 'aspngfreeforall' list
Hello, I'm not sure if this is the best way to do things but here goes: A page is displaying a shopping cart, with totals etc. In my codebehind, I bind the data to a repeater and then display it in the .ascx file. Where should I tally up the total of the order? If I loop through the reader in my code behind and assign the total to a variable, how can I display the value in the .ascx file? And If I...
Calling Page_Load? (4 replies)
ASPFriends.com 'aspngfreeforall' list
Hi, Can you explicitely call the Page Load with an web/html control button, ie; reload the page? Thanks, Stefan
Does an Application 'know' what build mode it is running on? (2 replies)
ASPFriends.com 'aspngfreeforall' list
I'm not quite sure what list this question should be addressed to, so I'm posting it here first. When compiling, one can specify the 'build' mode: "Release" or "Debug". I was wondering if the running application 'knows' what build mode it is running in...? I.e. if there was some namespace and function to ask at runtime, what mode it was compiled in? I'm working on a rather large application right ...
Custom Paging by querying a dataset (3 replies)
ASPFriends.com 'aspngfreeforall' list
The examples of custom paging for Datalist and Datagrids I have seen all appear to be based on the assumption you will create a temporary table in the database (SQL Server for instance), and pull the set of rows you want for the particular page needed from this temporary table. This requires the temporary table be recreated in the database each time a new page is requested , and that the main quer...
This is a test (2 replies)
ASPFriends.com 'aspngfreeforall' list
This is a test I've had problems responding to messages from this list.So, if this makes it through please ignore. Thanks, MHouston
check for file is at the last lin help! (2 replies, VIP)
ASPFriends.com 'aspngfreeforall' list
Hey, How do I : 1. how do I read 44 lines into a string array while checking if the file is at the end? 2. DO I have to read the lines one by one in order to get it into an array? David
check if datareader is empty (3 replies)
ASPFriends.com 'aspngfreeforall' list
How do I check if datareader returned any rows? david
Difference between these two connection strings? (2 replies)
ASPFriends.com 'aspngfreeforall' list
Hi, I just noticed that I have been using these two different connection strings and was wondering what the difference between them was because they both seem to work? "Data Source Dell 450; uid myUser; pwd myPass; Initial Catalog Pubs;" Versus: "server Dell 450; uid myUser; pwd myPass; database Pubs" Thanks, Stef
Multiple Forms.... WHY NOT!? (6 replies, VIP)
ASPFriends.com 'aspngfreeforall' list
Hi, How do you have multiple forms runat server? is this possible? what if you have a search form and a login control on the same page? Is the only way to do multiple forms post? i have been using one giant form, but this is a bad work around because when you type something in to a box and press enter, the focus may not be on that button and you will be taken to the wrong page... Please help SOS B...
Drop down Select Box (2 replies, VIP)
ASPFriends.com 'aspngfreeforall' list
Hi all, I have a client that uses Microsoft Access a lot. They love how in Access, when you're in a drop down combo box if you start typing the name you want, it will go straight there as opposed to on the web with select boxes where it only goes to the first letter that you type and then you have to scroll through the list. Does anyone have any code, or suggestions on how one might emulate that f...
Style sheets (3 replies)
ASPFriends.com 'aspngfreeforall' list
Hi, I am using a scascadin style sheet to create the layot for the controls. Now I have noticed that a changed style sheet is not read by the pages asp.net creates. I have made som nes classes in the style sheet, put the css document at my server (I use my production css) but the changes does not take effect for my pages at my development folders? Any one who knows what about this? Chaching proble...
Specifically edit some columns in datagrid (2 replies)
ASPFriends.com 'aspngfreeforall' list
Hello Chiefs, I want allow the users to edit only specific columns in a datagrid of all that is being displayed, 20 I am NOT using databound columns i.e. columns /columns and 20 I have autogeneratecolumns 3D "true" Any suggestions, Thanks in advance. Suman.
Release Candidate (5 replies, VIP)
ASPFriends.com 'aspngfreeforall' list
Hi All, I have Visual Studio.NET Release Candidate. Where can I get ASP.NET Premium Edition for Release Candidate or can I simply use the Beta 2 Runtime on the webserver. I am a MSDN Subscriber. Scott
Post back issue. (2 replies)
ASPFriends.com 'aspngfreeforall' list
Hello all, I've got a little problem with the postback. Here's my situation. I've got a page that loads 2 user controls (myForm.ascx, actionbox.ascx). MyForm loads a form with plenty of controls. On the actionbox control, I have action button (ImageButtons) like "New", "Save", "Change Status", "Print". Let's say I load an existing item (within the form). When I click the "New" button in the action...
Ad
Need Dot Net Interview Questions?
Ask ExamGuru, Inc. for advice and help on Passing .Net Interviews
.Net Projects
Best-of-breed application framework for .NET projects, developed by ExamGuru, Inc. and ExamGuru IT
Free .net Help
Commission ExamGuru, Inc. and his team for your next bespoke software project
FogBUGZ
The only bug tracking system carefully crafted with one goal in mind: helping teams create great software.
Awesome Tools
If you don't know about these, you're missing out... IT Certification Questions
IT Interview Questions
Free Oracle 10g Training
MCSE Boortcamp
Cisco Study Guides
Cheap Study Guides
Exact Questions
Dot Net Interview Questions
Oracle OCP
Cheap Travel
Designer Perfumes - Wholesale Prices
Free Programming Tutorials
 
ExamGuru IT Solutions - .Net Guru is owned and operated by ExamGuru, Inc., the man behind .Net Guru. If you're in the market for bespoke software or software consultancy, why not get him and his highly trained team to help? - www.examguru.net/ITCertification
 Copyright © ExamGuru, Inc. 2001-2006
Contact Us - Terms of Use - Privacy Policy - www.dot-net-guru.com - www.examguru.net - www.oraclesource.net - www.itinterviews.net - www.examguru.net/ITCertification