.NETGURU
ASPFriends.com 'aspngescalate' list
Up to: Discussion Lists

  • RSS Syndication
  • Latest Discussions Archive
    Inconsistant Invalid Cast Exception errors. (5 replies)
    ASPFriends.com 'aspngescalate' list
    I have asked this twice on AspNgFreeForAll with no answers at all. If someone could give some help I'd be most appreciative. I have a page (ewhsearch.aspx) with a search box and submit button. The submit button uses a response redirect to submit the form to another page (keywordsearch.aspx) which then submits the page back to the original ewhsearch page if the results of the search numbers only 1 ...
    session image caching (4 replies)
    ASPFriends.com 'aspngescalate' list
    I've been trying to get this to work for a couple of days now... hope you guys can help! What i want to do is to put an image into a Session Variable and then bring it back out and display it to a page at a later stage. The problem i am having i gettng the image back out of Session. I don't care what format it is presented back to the page in (.bmp is fine) The only way i have managed to do it mys...
    Forms Authentication ReturnURL (2 replies)
    ASPFriends.com 'aspngescalate' list
    Originally posted in aspngsec In Forms Authentication the location of the originating page where access was requested is placed in the query string using RETURNURL as the key. In beta 1 this contained the entire URL. In the release this contains the path but not the web site. If you are using forms authentication across multiple websites. How do you know where the originating page is? p.s. the req...
    Strongly Typed DataTables aren't serializable (2 replies)
    ASPFriends.com 'aspngescalate' list
    Original Message From: Dan Green [mailto:dan@dotnetdan.com] Sent: Wednesday, 26 June 2002 7:26 PM To: aspngdata Subject: [aspngdata] Not ans: Strongly Typed DataTables aren't serializable DataTables contained within strongly typed dataset aren't marked with the SerializableAttribute. Is this by design? How are they best used with remoting? My experimentation with getting this to work has been unsu...
    Cache dependencies BUG.... ONE LAST FINAL ATTEMPT TO GET AN ANSWER (9 replies)
    ASPFriends.com 'aspngescalate' list
    This has been posted to twice to aspngescalate, twice to aspngfreeforall and once to aspngcache without a satisfactory reply. I guess you guys must all be on holidays. I'm having some troubles with the application cache. I use the following line of code to add an entry to the cache Context.Cache.Add(cacheKey, fileInfo, new CacheDependency(filepath, DateTime.Now.AddMinutes(1)), Cache.NoAbsoluteExpi...
    SV: RE: SV: Editable DropDownList in Datagrid - 3rd time asking (4 replies)
    ASPFriends.com 'aspngescalate' list
    I usually do like this: I use '0' As the default value for all tables that will be used for filling dropdown boxes. If the dB value is '0' then I know that no selection has been done so far. '###################################################### '# Dropdown 'KLIENT NIV C5' to be filled # 20 '###################################################### 09 If Not intPrioID 3D 0 Then Dim cmdSelect Prio As...
    Cache, expirations and dependencies - NOT ANSWERED AGAIN (2 replies)
    ASPFriends.com 'aspngescalate' list
    OK no replies here either.... Here's some code to repeat the problem. To repeat the problem you'll notice that I actually write the file after it's details are written to the cache, in my actual system the file is being written before it's details are written to the cache. Unless I'm misunderstanding the documentation even though I write the file after it's been added to the cache because my depen...
    SV: Editable DropDownList in Datagrid - 3rd time asking (7 replies)
    ASPFriends.com 'aspngescalate' list
    I would think that using an ItemTemplate Column and an EditTemplate is what you need: 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D ASPX 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D ...
    Editable DropDownList in Datagrid - 3rd time asking (2 replies)
    ASPFriends.com 'aspngescalate' list
    Moved from [aspngdata] to [aspngescalate] by Marcie Jones marciejones@yahoo.com Hi, this got posted to aspngdatagridrepeaterdatalist twice, but there were no replies. Has anybody used a dropdownlist in a datagrid edit mode? I have seen examples on the web and in books, but have not gotten any of them to work. I am using VB.NET, with an .aspx and .aspx.vb files (code in 2nd file). I am trying to do...
    SV: Re: SV: Re: SV: Re: Confirm delete after Cancel in Datagrid/EditColumn (NOT ANSW ERED AND DRIVING ME NUTS) (4 replies)
    ASPFriends.com 'aspngescalate' list
    Ill show you my 'DataGrid OnCancelCommand': Sub DataGrid CancelCommand(ByVal sender As Object, ByVal e As DataGridCommandEventArgs) Handles myDataGrid.CancelCommand, dgrOrderDetails.CancelCommand Dim intCustID As Integer 3D Session("customerid") Select Case sender.Id Case "myDataGrid" myDataGrid.EditItemIndex 3D 1 myDataGrid.DataSource 3D BindGrid() myDataGrid.DataBind() Case "dgrOrderDetails" dgr...
    SV: Re: SV: Re: Confirm delete after Cancel in Datagrid/EditColumn (NOT ANSW ERED AND DRIVING ME NUTS) (2 replies)
    ASPFriends.com 'aspngescalate' list
    You didn't read my message thoroughly ;) 'Customers/Customer Accounts' then Click 'Order' 3D 3D 3D 3D 3D 3D CUSTOMERS Click: 'X' to delete (you get the confirmation dialogue) Click: 'E' and then 'X' (you get the confirmation dialogue) Click: 'E' and then 'C' and then 'X' (the record is deleted without warning) Click: 'E' and then 'U' and then 'X' (the record is deleted without warning) It's only t...
    SV: Re: Confirm delete after Cancel in Datagrid/EditColumn (NOT ANSW ERED AND DRIVING ME NUTS) (2 replies)
    ASPFriends.com 'aspngescalate' list
    Well Dennis, This doesn't work. I loose the clientside OnCLick eventhandler e.g when I have click the EDIT button and later pressed CANCEL. The record is then deleted without warning. Go here to see what I mean: http://213.67.33.251/storeadmin Login as: Guest/guest Choose: 'Customers/Customer Accounts' then Click 'Order' Click: 'X' to delete (you get the confirmation dialogue) Click: 'E' and then ...
    Confirm delete after Cancel in Datagrid/EditColumn (NOT ANSW ERED AND DRIVING ME NUTS) (2 replies)
    ASPFriends.com 'aspngescalate' list
    I have had no answers to this at aspngdatagridrepeaterdatalist after many attempts (and it has not appeared in the Escalate list either in spite of me sending it there several days ago)!!!!!!!!!! so I am trying again to escalate. I suspect it has something to do with viewstate. ORIGINAL PROBLEM: "I'm having a problem finding a way to add onClick 3Dreturn confirm to a button after having cancelled ...
    Custom control caching question (2 replies)
    ASPFriends.com 'aspngescalate' list
    I have asked this question in aspngcache with no results, so I am resubmitting the question here. I have built a custom control that I have compiled into a dll and placed in the bin folder and registered on an .aspx page. All works fine. The control displays one random record from a database based on certain internal criteria, meaning I pass no information to the control. I want to cache the outpu...
    Querystring and Viewstate (3 replies)
    ASPFriends.com 'aspngescalate' list
    This question has been asked on freeforall, client, and I think even the cs list. Even after adding the NOT ANSWERED YET subject, no luck. Thanks Steve for your help with this so far. :) Dot Net Guru I have a webpage which when you hit the submit button, results from a search are posted in a datagrid format. I am not using any values in the querystring nor am I reading from the querystring. There is only ...
    NOT ANSWERED BEFORE: Save Event Log (2 replies)
    ASPFriends.com 'aspngescalate' list
    Is there a way to save an event log to an evt file programmatically using C#? Thanks, Sean ************************* Sean Bytnar MCSE, MCP I Illinois State University Technology Specialist Campus Box 2202 Normal, IL 61790 v 309 438 7355 f 309 438 7761 sdbytna@ilstu.edu
    NOT ANSWERED BEFORE : buttons/links in mobile internet toolkit (2 replies)
    ASPFriends.com 'aspngescalate' list
    Hi, I am still not sure about the way to solve my problem though I raised it on aspngmobile@aspfriends.com I will sumerize the problem : 1. how to control the behavior of link/button placing in case of NOKIA 7110 ( How to put cmd buttons in 'Options' of Nokia 7110 in case there are more than one ) 2. How to write arbitrary content in wml Thanks, Mayur Anil John Anil@LearnMW.com wrote: Mayur, Yes y...
    Security issue (RESOLVED, but is it a .Net bug?)(NO ANSWER YET) (3 replies)
    ASPFriends.com 'aspngescalate' list
    I have tried to have comments or answers for this during the last weeek, but noone seems to have an opinion. This is an excerpt of a thread between my ISP and someone at a Microsoft Security list regarding naming of folders under IIS which seem to effect only .Net: /////////////////////////////// Snip //////////////////////////////// I got the following answer to the problem in the newsgroup "micr...
    COM object performance (3 replies)
    ASPFriends.com 'aspngescalate' list
    (I first asked this 7 hours ago on [aspngmigrate], resent w/ "NOT ANSWERED BEFORE" 5 hours ago, and received one response, which is detailed at the end of this message.) I have a reporting DLL written in Visual Basic (STA threading) that uses Data Dynamics' ActiveReports component. Here's how I'm using it in my ASP.NET app, from lowest layer to highest: ActiveReports DLL My VB COM DLL that instant...
    NOT ANSWERED passing ref by ref in C# (3 replies)
    ASPFriends.com 'aspngescalate' list
    This is a multi part message in MIME format. InterScan NT MIME Boundary Content Type: multipart/alternative; boundary " NextPart 001 01C1D99E.EB8310E0" NextPart 001 01C1D99E.EB8310E0 Content Type: text/plain; charset "us ascii" Content Transfer Encoding: quoted printable Ok, so I have a wrapper function that essentially does the following: 20 public void DoSomething(ref Object Param1) { SomeOtherF...
    Pleeeeeese: NOTANSWERED BEFORE: Invalid URI Exception (2 replies, VIP)
    ASPFriends.com 'aspngescalate' list
    Can no one help me with this? I get the Invalid URI Schema exception no matter what I try to do with the resulting XML other than putting it into an XML Document object, which I really don't want to do. Thanks? Devin No Problem... Heres most of the code in the Method: HttpWebRequest w (HttpWebRequest)WebRequest.Create(strURL); w.Credentials new System.Net.NetworkCredential("User", "Password", "DMA...
    NOTANSWERED BEFORE: Invalid URI Exception (5 replies)
    ASPFriends.com 'aspngescalate' list
    I am trying to load some XML from a WebDAV query into a dataset but keep getting an Invalid URI exception. Heres the code: StreamReader IStream new StreamReader(r.GetResponseStream(),System.Text.Encoding.ASCII); if (IStream.Peek() 0) ds.ReadXml(IStream.ReadToEnd(),System.Data.XmlReadMode.InferSchema); Any ideas why? Thanks Devin | [aspngxml] member devinr@drone interactive.com YOUR ID | http://www...
    Databinding to non-DataView/DataSet objects (9 replies)
    ASPFriends.com 'aspngescalate' list
    Hi, I have posted this (twice) on aspngdatagridrepeaterdatalist and have received no answers. I'm attempting to bind datalists/datagrids/repeaters to my own classes. I can get this to work fine as long as I specify the fields to which to bind (e.g. AutoGenerateColumns "false"). I accomplish this by Implementing IEnumerable and creating a Default Property to return the appropriate field values. Thi...
    NOT ANSWERED BEFORE: Updating Assemblies in GAC (3 replies, VIP)
    ASPFriends.com 'aspngescalate' list
    I tried this question in aspngfreeforall and got no answers. Hoping someone here can help. I recently made changes to a shared assembly in the GAC on one of our servers. I did this by going to \WINNT\assembly and deleting the current version and then dragging and droping the new version into it (same way I installed it the first time). (Note: when I say "version" I don't mean literal version.. it ...
    SMTP event sink (2 replies)
    ASPFriends.com 'aspngescalate' list
    I tried to ask this on [aspngfreeforall] but it was moved to [ngfx mail] and got no answer after two tries. Please help me! /joakim sund E9n Original Message From: Joakim Sunden [mailto:joakim.sunden listor@etc.se] Sent: den 21 februari 2002 10:44 To: ngfx mail Subject: [ngfx mail] SMTP event sink 20 Moved from [aspngfreeforall] to [ngfx mail] by Jeff Widmer jeffwids@aspalliance.com 20 Hi! In .NET...
    CheckBoxList Selection when used in EditItemTemplate for DataGrid (2 replies)
    ASPFriends.com 'aspngescalate' list
    I am stuck on this one. I have a CheckBoxList which is used as part of an EditItemTemplate in a DataGrid. I set it's DataSource via an inline DataBinding expression like this: asp:TemplateColumn HeaderText " b Roles /b " EditItemTemplate asp:checkboxlist id "chkRoleList" runat "server" DataTextField "GroupName" DataValueField "GroupId" Font Size "10" DataSource ' %# GetRoleList((string)DataBinder....
    Correction. Roles in Windows Authentication (3 replies)
    ASPFriends.com 'aspngescalate' list
    I did get one answer, but it was not what I was looking for. Answer: Yes.. User.IsInRole("\\DOMAIN\GROUP") Original Message From: Sissel Johnsen [mailto:sissel.johnsen@bit id.no] Sent: 19. februar 2002 08:56 To: aspngescalate@aspfriends.com Subject: Roles in Windows Authentication I tried to ask this on aspngsec and aspngfreeforall and got no answer. Now I need to get this answered because the oth...
    eMail Attachment Difficulties (2 replies, VIP)
    ASPFriends.com 'aspngescalate' list
    I posted messages to this effect the last two day on aspngfreeforall and ngfx mail and have received no reply from any of the members concerning my issue. I need to find a solution to this issue and these other lists don't seem able to help me. I'm having difficulties with the MailEncoding property concerning email attachments. When I attempt to attach certain .pdf documents using MailEncoding.Bas...
    Server Control Toolbox Icons without VStudio.net (4 replies, VIP)
    ASPFriends.com 'aspngescalate' list
    I've asked this server times on a multitude of lists, and never gotten an answer. How do I give my server controls a toolbox icon without using visual studio.net? I'm aware that with visual studio, you just add an icon into the project with the same name as the control, and set some compile option on it. however, I need to do it from the command line or with Nant. Can ANYBODY give me a clue on how...
    User Controls and Form Inheritance - How to Declare Them? (12 replies, VIP)
    ASPFriends.com 'aspngescalate' list
    Here is the problem again asked on [aspngreuse] and [aspngfreeforall] without a resolution. I have a 2,000 line .aspx script I am splitting into two pieces along the lines of: http://www.learnasp.com/freebook/learn/visualinheritance.aspx I have fixed 90% of the compile errors after converting it by adding many protected statements, i.e. protected EmailPrevious as dropdownlist protected passw as ht...
    LinkButton Bug (3 replies, VIP)
    ASPFriends.com 'aspngescalate' list
    Posting this to escalate in hopes that the right people see it: I've noticed that the link button uses javascript to do postbacks but there is one problem with this. form.submit() doesn't call the form onSubmit code (if any is defined)....I have a user control that requires some processing when the form is submitted. But if the user control is used in page that uses linkbuttons (instead of normal ...
    Reflection FindMembers not working in Beta2 (3 replies, VIP)
    ASPFriends.com 'aspngescalate' list
    I've received no answers to two postings in FreeForAll... I've received a bug report on my book that has me baffled. I have two examples, the first uses GetType to get a type and then GetMembers on that type instance; works fine. The second gets the type and then uses FindMembers. This used to work but no longer does. I've checked the documentation and I can not figure out what is wrong. Here is t...
    cached items disappearing (3 replies)
    ASPFriends.com 'aspngescalate' list
    hi folks, i posted a message on ngcache, about why my treeview user control was being lost out of the cache. there are no dependencies. it has its output caching set to 999999. after 10 mins of no activity, it gets removed from the cache. a member on ngcache reckoned this was because .net decided after a set time of not being accessed, it wasn't important to cache it anymore. 'I' would like to dec...
    Calling diferent Class based on String (5 replies, VIP)
    ASPFriends.com 'aspngescalate' list
    Hi, I asked this question on aspngfreeforall and also made a similar question last week but so far never got a reply so I would apreciate if anyone could help me out on this. Bruno Carlos How would one call a diferent Class based on a string? Example: I have these 3 strings: "one", "two", "three". I would like to call "one".member(), "two".member or "three".member() depending on the string I have....
    Unanswered: Role-based forms authentication question (4 replies)
    ASPFriends.com 'aspngescalate' list
    Hi all, I have previously posted this question to aspngsec@aspfriends.com and recieved no responses so any help is appreciated. I have been experimenting with forms based authentication and trying to assign roles to a principle but have been unable to make the Principle and the assigned roles span page requests. These are the steps I have used 1 Using the Web.Config settings (below) requests are r...
    handling events raised in user controls (2 replies, VIP)
    ASPFriends.com 'aspngescalate' list
    This message was not answered on Controls. I've added it here because it is now the end of the day and this question is pretty urgent for me... I am having difficulty with handling events raised in user controls. I have a user control in a file named booklist.cs. I also have a web page which has an instance of this user control. Within the booklist user control is a drop down list. When the user c...
    Bug in DataAdapter Update? (3 replies, VIP)
    ASPFriends.com 'aspngescalate' list
    I posted this (twice) to aspngData and received no answers at all. This is pretty urgent for me as I'm writing about this feature on deadline... Is this a bug or am I missing something? I follow these steps: 1) populate a dataset from two tables in the db (into one table in the dataset) 2) modify one or more records in the dataset 3) hand modify the record in the db (simulating a concurrency probl...
    ASP DataGrid Paging (2 replies, VIP)
    ASPFriends.com 'aspngescalate' list
    Moved from [aspngwebcontrols] to [aspngescalate] by darthcarroll@asplists.com Listmaster Please post to webcontrols list, as it is really about the operation of the DataGrid Web control. You moved it to the data list before and I haven't had a response. Thanks Has anyone else noticed a problem with the behavior of paging a DataGrid when the PagerStyle Mode is set to Numeric Pages and you have a la...
    Instead of Response.Redirect I'm getting HTML returned (5 replies, VIP)
    ASPFriends.com 'aspngescalate' list
    I tried to ask this on [aspngfreeforall] and the moderators private lists and got no working answer (one answer in total). Now I need to get this answered because the other lists are not providing me with valid answers. This in an intermittent error id say 80% of the time its occurring. I'm calling Response.Redirect in a sub as so Sub NextPage(sender As Object, e As System.EventArgs) Dim dNo, dQst...
    issues with concurrent SqlConnections and SqlTransactions... (3 replies, VIP)
    ASPFriends.com 'aspngescalate' list
    i asked this twice before on aspngdata, and didn't get any response. it seems like a pretty serious bug... i basically can't use SqlTransactions at all. thanks for somebody taking the time to look at this. i'm having some serious issues with SqlTransactions in Beta 2. steps (pseudo code): create/open new SqlConnection for DAL class A create new SqlCommand for DAL class A set command text to "sproc...
    Fastest way to fill a DataSet from a SqlDataReader (3 replies, VIP)
    ASPFriends.com 'aspngescalate' list
    [I've made a couple of posts to the aspngdata mailing list and received no response. In the meantime I've done some experimentation. This post restates my question and provides details of my tests.] I'm looking for the fastest way to build a DataSet schema and then populate it with a SqlDataReader. So far I've played with: * SqlType Typed Accessors (eg. GetSqlInt32) * .NET Typed Accessors (eg. Get...
    How do I dynamically invoke csc in the proper environment? (2 replies, VIP)
    ASPFriends.com 'aspngescalate' list
    This problem was not answered in aspngcs. Thanks. Problem: I'd like to invoke CSC dynamically from within my running program. It fails, I suspect because the cmd environment is not correct (e.g., path, libs, etc.) Description: To do this I crate a processStartInfo object and set its FileName to "cmd.exe" and I set its arguments property to "/c csc /target:library filename .cs" I then pass the Proc...
    NOT ANSWERED - ServiceBase.OnCustomCommand and ServiceController.ExecuteCommand (2 replies, VIP)
    ASPFriends.com 'aspngescalate' list
    This message, which was originally sent to "aspngbeta", has been moved to "aspngescalate" mailing list by the List Master Hello, I am trying to use the ServiceController.ExecuteCommand(Integer) / ServiceBase.OnCustomCommand(Integer) methods to communicate with a Windows Service that I wrote. The OnCustomCommand receives the appropriate command identifier (in this case, 128), but I can't figure a w...
    Screen scraping POST operation (15 replies, VIP)
    ASPFriends.com 'aspngescalate' list
    I've tried asking this on aspngfreeforall and aspngvb *twice* with no response. I'm following the example at http://www.aspalliance.com/stevesmith/articles/netscrape.asp and it works just fine, but I'm trying to convert it to POST... aside from changing the action, I'm not sure what to do and nobody seems to know. Could it be that I need to add some parameters to get it going? (it just times out r...
    NOT ANSWERED BEFORE Wiring button events in code. (2 replies, VIP)
    ASPFriends.com 'aspngescalate' list
    "I tried to ask this on [aspngfreeforall] and got no answer (posted 24/7 & 25/7). Now I need to get this answered because the other list is not providing me with valid answers. (no replies were posted at all)." Look at the code below: (You can see the code in action at http://ip1.cambro.net/v0 2/webform3.aspx ) I am trying to wire up the click event of button2, but only do it when button1 has been...
    Simultaneous SetAborts cause SqlException? (7 replies, VIP)
    ASPFriends.com 'aspngescalate' list
    I'll be really appreciative if someone could take the 5 minutes it takes (no more, I promise) to download and run the program I've linked to below. The zip file contains a .cs, .snk and build.bat file. If your database is setup with a blank password for sa, the instructions for use are: c:\temp build.bat c:\temp setabort.exe If you have a non blank sa password it's the same instructions after firs...
    No one knows how to use the File Class? (2 replies)
    ASPFriends.com 'aspngescalate' list
    This message, which was originally sent to "aspngstart", has been moved to "aspngescalate" mailing list by the List Master Ive sent this email once already, and it confuses me that no one has replied to it. I would think that experienced .NET developers could answer my query. So once again, im sending this email: To whom ever can help me :) I would like to use the Open method from the File class w...
    NOT ANSWERED: NotInheritable/sealed Classes and Protected members (19 replies, VIP)
    ASPFriends.com 'aspngescalate' list
    MessageJust moving this along to here in hopes of getting an answer. :) Brian Original Message From: Brian Bilbro To: aspngfreeforall Sent: Thursday, July 12, 2001 8:23 AM Subject: [aspngfreeforall] Re: NOT ANSWERED: NotInheritable/sealed Classes and Protected members Original Message From: Brian Bilbro To: aspngfreeforall Sent: Wednesday, July 11, 2001 9:14 PM Subject: [aspngfreeforall] NotInheri...
    NOT ANSWERED BEFORE: Data Sets and Data Grids with relational tables - Use a join? (4 replies, VIP)
    ASPFriends.com 'aspngescalate' list
    I tried the following question on ASP Data and ASP Controls. I did get one reply (from Alex Lowe) who suggested that option 1 will exhibit better performance (I suspect strongly that he is right). Is there any reason to prefer option 2? Suppose I have two tables: one orders, the other products. I want to show the orders in a data grid. Within an order, there are products identified by product id, ...
    2 column datalist with child views (4 replies)
    ASPFriends.com 'aspngescalate' list
    I've asked this question on AspNgFreeforall and AspNgData approximately 6 times over the last few months, since I first started working with Beta1. Nobody has ever responded on any occasion and I'm beginning to wonder if its simply impossible or so simple people don't think it's worth answering :) I'm creating dynamic pages to show the types and ranges of various water heaters we sell by manufactu...
    Visit the archive for messages from this site.
  • July 2001 (1 item)
  • August 2001 (1 item)
  • September 2001 (2 items)
  • October 2001 (23 items)
  • November 2001 (1 item)
  • January 2002 (1 item)
  • February 2002 (6 items)
  • March 2002 (3 items)
  • April 2002 (6 items)
  • May 2002 (5 items)
  • June 2002 (5 items)
  • July 2002 (3 items)
  • August 2004 (1 item)
    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