Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
K

khuzwayom

@khuzwayom
About
Posts
43
Topics
22
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Contract Developer - Hourly rate [modified]
    K khuzwayom

    Thank you Kumar and Pete for your responses, I have rephrased my question....

    MP

    The Lounge csharp sql-server javascript css asp-net

  • Contract Developer - Hourly rate [modified]
    K khuzwayom

    Hi All Would you please help me, I am planning to move into contracting soon due to a number of personal reasons. I have 6 years experience in .Net development. My skills set comprises of C#, ASP.Net,WCF,WPF,Silverlight,CSS, JavaScript,JQuery, SQL, SQL Server 2000 - 2008, SSIS and SSRS. So I would like to know "what's the average rate based on my experience and skill set" ? Thank you in advance.

    MP

    modified on Wednesday, March 30, 2011 8:43 AM

    The Lounge csharp sql-server javascript css asp-net

  • Probelm in Communication between Host and Client in WCF
    K khuzwayom

    When you run the Host service then go to your client application, can you add the service reference to your client application?

    MP

    WCF and WF csharp wcf question dotnet wpf

  • What do software development companies look for from a graduate?
    K khuzwayom

    Thank you everyone. I greatly appreciate your contribution. Keep well :)

    MP

    The Lounge question json help

  • What do software development companies look for from a graduate?
    K khuzwayom

    Thank you to everyone who took their time and answered the question. And for the laugh among the comments.

    MP

    The Lounge question json help

  • What do software development companies look for from a graduate?
    K khuzwayom

    Thank you for your input.

    MP

    The Lounge question json help

  • What do software development companies look for from a graduate?
    K khuzwayom

    Hi All I have always found help here on Code Project, thank you for all the assistance all these years. Please help me again by answering this question. What are the key things that software development companies look for from a graduate? Ideally, things that can distinguish the graduate from the rest. Thank you in advanced for your contribution.

    MP

    The Lounge question json help

  • Problem with user-defined functions in SQL Server 2008
    K khuzwayom

    Hi RAH Thanx for the reply. I actually get this error even when I manually execute the stored procedure in SQL Server.

    MP

    Database database help csharp sql-server dotnet

  • Problem with user-defined functions in SQL Server 2008
    K khuzwayom

    Hi All Would you please help me, I have a stored procedure that calls a function within it. It is working fine when pointing to production database, but when I change my connection to point to QA it raises an error. I have copied both the stored proc and the function from production to QA but still. The error that I get is "A .NET Framework error occurred during execution of user-defined routine or aggregate" I am using SQL Server 2008 full version. Thank you in advance for your assistance.

    MP

    Database database help csharp sql-server dotnet

  • dropdownlist
    K khuzwayom

    Is the AutoPostBack property of that dropdown set to True?

    MP

    ASP.NET database

  • DNN Module.
    K khuzwayom

    Hi All I am sorry if I am asking this question on a wrong forum. I am working with the DNN PopUp Calendar control, I have a textbox next to it that displays whatever date I choose from the Calendar. I want that textbox to be readonly, but the problem is that if I set the ReadOnly property of the textbox to true, the textbox always defaults back to the default values (today's date) after the postback. But if the ReadOnly property is false it displays the date I chose on the textbox even after the postaback. So I would like to know how to make the textbox readonly but still keep the selected date displayed on the textbox after postback. I initialse the textbox to today's after inside the if(!IsPostback) block. Thank you in advanced for your assistance. Kind Regards MP

    MP

    Web Development help tutorial question

  • Dropdownlist problem
    K khuzwayom

    Yes, I did. I think the problem is somewhere else not postback, because if th eproblem was postback it should behave the same way even when an item something in its Value property, but it only misbahes when the item has null/nothing in its Value property. it's C# if (!IsPostBack) { BindDepots(); }

    MP

    ASP.NET help database question

  • How does it take to be an MVP?
    K khuzwayom

    Hi All MVPs Woudl you please help, I want to be an MVP, how does one become an MVP? Thank You for your answers

    MP

    IT & Infrastructure architecture help question

  • Dropdownlist problem
    K khuzwayom

    Hi Abhijit Thanx for the assitance. I populate the Dropwdown in page_load if (_value != "") { _value4 = double.Parse(_value); _transportCost = _kilometers * _value4; lblMessage.Text = "Estimated Transport Cost is: £ " + _transportCost.ToString(); } else { lblMessage.Text = "The Source does not have a value" } If the execution got inside the if statement, it works fine, it does the calculation and keep the selected item displayed on the dropdown but if it went ti the ELSe block, it displays the message but the dropdown displays the fisrt item which i sin index 0.

    MP

    ASP.NET help database question

  • Dropdownlist problem
    K khuzwayom

    Hi Thanx for the reply. Here is my code _kilometers = Convert.ToDouble(txtKM.Text); _value = drpDepot.SelectedValue.ToString().Trim(); if (_value != "") { _value4 = double.Parse(_value); _transportCost = _kilometers * _value4; lblMessage.Text = "Estimated Transport Cost is: £ " + _transportCost.ToString(); } I suppose after finishing executing it should keep the Item selected displayed...

    MP

    ASP.NET help database question

  • Dropdownlist problem
    K khuzwayom

    Hi All Please help, here us the scenario. I get Source and Source code from the database. I assign Source to the Text property of the DropDownlist and I assign SourceCode to the Value property of the same DropDownList. What I want to do is that when you select an item from the DropDownlist, I want take the Value for that Item and do some calculations and keep the selected item shown on the dropDownList. The problem is that..if the selected item has something eg 2 for the Value the application works fine, but if the Value property for that item in null the dropdown display the first item in the list. It should display the selected item..it only do this if there is something in the value property. Here is my code, that populates the dropdownlis. drpDepot.DataSource = ds; drpDepot.DataTextField = "SourceName"; drpDepot.DataValueField = "SourceCode"; drpDepot.DataBind(); drpDepot.Items.Insert(0, new ListItem(string.Empty, string.Empty)); Please help, I don’t know what is the problem. Please help. Thank you in advanced

    MP

    ASP.NET help database question

  • Parser Error Message: Child nodes not allowed.
    K khuzwayom

    Hi Everyone I have an application that is running fine on my development and QA environment but it's giving me problems on production. I get an error "Child nodes not allowed" on thi sline "<providerOption name="CompilerVersion" value="v3.5"/>;" Parser Error Message: Child nodes not allowed. Line 126: compilers Line 127: compiler language="c#;cs;csharp" extension=".cs" warninglevel="4" type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Line 128: provideroption name="CompilerVersion" value="v3.5" Line 129: provideroption name="WarnAsError" value="false" Line 130: compiler So I would like assistance at what is the cause and how to solve this problem. Thank you Mpumelelo Khuzwayo

    MP

    ASP.NET csharp help beta-testing tutorial question

  • Please help: Unable to automatically step into the server.
    K khuzwayom

    Hi All I have a webmethod that I would like to step through it, I call it from a web application. I have a break point on the line that calls the webmethod and another one on the signature of the webthod in the webservice. When I try to step into this web method I get the following error. "Unable to automatically step into the server. The remote procedure could not be debugged. This usually indicates that debugging has not been enabled on the server." Would you please assist me, I need know to get thi ssorted as soon as possible. I just want to know how togo abount resolving this issue. Thank you in advance. MP

    MP

    Web Development help sysadmin

  • I want to change the ASP.NET version in IIS [modified]
    K khuzwayom

    Thanx Phil. This is my first time having to do this, would you please tell me how to go about enabling .Net on IIS? I greatly appreciate your assistance

    MP

    Web Development windows-admin question csharp asp-net dotnet

  • I want to change the ASP.NET version in IIS [modified]
    K khuzwayom

    Hi Everyone. Please help. I want to change the ASP.NET version in IIS, but the ASP.NET version dropdown is disabled. How do I enable it? We have .Net Framework 1.1, 2.0 and 3.5 installed. It's running on Windows Server 2003, with Small Business Server 2003 installed. I followed the instructions below. go into IIS (in WinXP it's Start - Control Panel - Administrative Tools - Internet Information Services) drill down to your website right-click on your website and choose Properties click on the ASP.NET tab change the value in the ASP.NET version dropdown Thanx in advance for your assistance.

    MP

    modified on Wednesday, November 5, 2008 11:03 AM

    Web Development windows-admin question csharp asp-net dotnet
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups