Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: nicklieb
  • Content: Threads
  • Order by date
  1. nicklieb

    Namespace not found

    error CS0246: The type or namespace name 'xxx.Custom.TreeNavigator' could not be found (are you missing a using directive or an assembly reference?) this is driving me bonkers. before you say it, the spellings are correct, and i have checked and rechecked this issue and the spellings are...
  2. nicklieb

    redirection after login

    this may seem abit trivial, but am looking for an easy solution. here goes I have application with a large amount of pages, each on is connected to a master page (well 3 diff ones). on the master pages i have a user control for the users information, ie who they are and a logout button. This...
  3. nicklieb

    refencing another website in solution

    I have inherited a web application, that was built in 2003, and I have converted it to 2005. There is a main website, and then 2 other websites which contain user controls. All the navigation is channelled through a main page ( main.aspx), which then populates the user control in the viewing...
  4. nicklieb

    illegal Characters in Xml when sent to XMLreade

    I am trying to create a listener page, that will validate and incoming XML document with an XSD. StreamReader InboundStream = new StreamReader(Page.Request.InputStream); string UseString = InboundStream.ReadToEnd(); InboundStream.Close(); string result = ValidateXML(xmlString); public...
  5. nicklieb

    Easy Way to Validate if object parameters are not empty

    Hi, I have a very large object that has around 50 parameters, and was looking for an easy method to validate that the paremeters are populated. I don't really want to go throuhg each parameter with if (object.Parameter == String.Empty) { //then do something } I have seen something...
  6. nicklieb

    Merging XML documets

    I am rebuilding an interaction with UPS is .net, was previously built. In the initial interaction i need to send 2 distinct xml files at once. in the classic asp, this was done through a string, however in the c# version, i am using XML, and with two XML headers, any XMl parser will reject it...
  7. nicklieb

    Webservice Publishing Problems

    I have an error that is driving me nuts. I am publishing the web service to a development server. Windows 2003 all with latest patches etc. Publishing the service is no problem, but when i try to import it into a new project there is an eror The server committed a protocol violation...
  8. nicklieb

    Populating an XML Document

    I have been looking around for examples, but have yet to find anything that I feel fits my 'problem' it's not really a problem, but I'm trying to find an easier way of populating this XML file. it is quite large and is being used to interact with a courier system. I have already built a...
  9. nicklieb

    reading image from website and resizing it and displaying

    I am developing a little noddy windows form, and have an image place holder on the form. it's really quite simple, where user enters a part number whihc is then displayed in a datagrid. When user click on a row, an image is then displayed in the placeholder of that part. there are around...
  10. nicklieb

    random password generator

    I found this code public static string CreateRandomPassword(int PasswordLength) { string _allowedChars = "abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNOPQRSTUVWXYZ0123456789!@$?"; Byte[] randomBytes = new Byte[PasswordLength]; char[] chars = new char[PasswordLength]...
  11. nicklieb

    Custom Errors Headache

    I have a problem with an small application that I am trying to publish to my production webserver. It's driving me bonkers as i have tried pretty much everything that I can think of.. The application works on my development machine (XP), the test system (2003), but not the live production...
  12. nicklieb

    problem with textbox.value

    for some reason my page is erroring on the text box. When I view the code is see the textbox initition protected System.Web.UI.WebControls.TextBox txtusername; protected System.Web.UI.WebControls.TextBox txtpassword; but that's not what I want...I want the following protected...
  13. nicklieb

    list of c# classes and objects?

    Hi, Does anyone know where I can find a list of the all the standard objects and classes that are available in c# .NET with an explanation of what they are. The msdn and visual studio helper are absoloute rubbish. The problem I have is, I know what I want to do, but I don't know whihc...
  14. nicklieb

    Problem releasing to production server

    Hi all, I'm have some problems moving an application from my dev machine to the production server, i've tried looking in the Vis Studio help, and search google, but can't seem to find an answer. The app uses a web service, and it works perfectly inside the network. However when i try to...
  15. nicklieb

    Script Running twice

    Hi All, I have a real problem, for some reason my script seems to be running twice. The script pumps out an email with data drawn from database. The first email comes through correctly with all fields populated correctly. Then a second email comes through, with all the field empty. This is...
  16. nicklieb

    Releasing pages

    Hi, I am a newcomer to C# and have been building an application which I have had some great success with. I am stuck, and not sure how to procede. I develop all the aspx pages on my local development machine, and have tested it and happy to release it. I copied across a previous version some...
  17. nicklieb

    XML null tag

    I don't think i have my brain in today :( how do you check if a node in an xml is null? set completed_code = objXML.SelectSingleNode("//completed_code") if completed_code.firstChild.nodeValue <> "" then completed_code = completed_code.firstChild.nodeValue end if says object is...
  18. nicklieb

    Base64 Convert and BinaryWrite

    Hi all, I have a curious problem. I have written an application that in classic ASP, that books an item into a database, there is an interaction between the application and UPS to get a shipping label. The label is returned via XML as a 46k Base64 character string. What then happens is that...
  19. nicklieb

    Base64 decoding to gif -- performace issue

    I am using Xstandard DLL for decoding a Base64 character string into a gif http://www.xstandard.com/page.asp?p=F5096C20-DF8F-4FAA-A1A5-CC85A934139A the image is a UPS label. I have a performance issue with it, the first time the page is loaded it seems to takes around 30 seconds to generate...
  20. nicklieb

    XMLHTTP send

    since the end of last week an automated script has stopped running that use XMLHTTP to send an xml file to script across the internet. it's pretty standard stuff (i've posted on the the send script) Set objHTTPXML = Server.CreateObject("Microsoft.XMLHTTP") objHTTPXML.open...

Part and Inventory Search

Back
Top