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
D

deezZ

@deezZ
About
Posts
18
Topics
9
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Using Open Flash Chart 2
    D deezZ

    Not much of help, already visited the links but... But thanks for help. If you have anything more then plz post the link.

    ASP.NET help csharp asp-net adobe

  • Javascript Code Comparing Two textbox's value
    D deezZ

    <!-- function checkEmail() { if (document.TheForm.Email.value != document.TheForm.EmailVerify.value) { alert ('The email addresses do not match. Please re-enter.') return false; } } //> Use the code and change the control anmes as required in your page, and then call the function on the click of the button.

    ASP.NET javascript help question

  • How to get HTML controls in code behind
    D deezZ

    Hi There are two things you have to do. (1) Edit the HTML code to include the attribute runat="server" in the opening tag of the HTML control. For example for a table it might be: (2) Then you need to include the namespace "System.Web.UI.HtmlControls" in the code behind (e.g. in VB the directive Imports System.Web.UI.HtmlControls). If you are using Visual Studio then you will find that it will become available in auto-complete under the identifier (in the example above) Table1. With that you will be able to program it's behaviour in a very similar manner to web Server controls. Hope that helps! :thumbsup: Deepak Surana

    ASP.NET html sysadmin help tutorial question

  • regarding Page redirection
    D deezZ

    Rename the namespace, delete all the old dll's out of the bin folder recompiled and hopefully it will work. Get back if it dosent work. Gud Luck:thumbsup:

    ASP.NET help html sysadmin learning

  • Using Open Flash Chart 2
    D deezZ

    Hi, Is anyone using Open Flash Chart 2 in ASP.net I am facing a problem that I wish to make the X axis lables vertical. Please help. A demo or a source code would be very helpful. Thanks in advance.

    ASP.NET help csharp asp-net adobe

  • CompositeControl AJAX Problem
    D deezZ

    Hi, I have made a class of CompositeControl and when I use AjaxControlToolkit.FilteredTextBoxExtender on it, it gives the following error: 'AjaxControlToolkit.FilteredTextBoxExtender' cannot extend controls of type MyClassName I have also tried to implement AjaxControlToolkit.IControlResolver on my class but didnt work. Please help.

    ASP.NET help

  • Mailing Problem
    D deezZ

    Nopes.. there are no firewall which is blocking the mails.

    ASP.NET sysadmin help csharp asp-net com

  • Mailing Problem
    D deezZ

    Hi. How do I need to configure the SMTP server ..

    ASP.NET sysadmin help csharp asp-net com

  • Mailing Problem
    D deezZ

    Oh I am sorry .. It is not giving any error but it is just not sending the mails. I have created a global exception handling mechnism, and there are no errors logged. I am sorry for the misleading information.

    ASP.NET sysadmin help csharp asp-net com

  • Mailing Problem
    D deezZ

    Is there any requirement to setup SMTP server on the Server as i am providing the connections settings of the SMTP in the web.config The mailing server is different from the deployment server.

    ASP.NET sysadmin help csharp asp-net com

  • Mailing Problem
    D deezZ

    No errors.. I have checked the event viewer as well as my application lob, but no errors. Its just the mails are not going.

    ASP.NET sysadmin help csharp asp-net com

  • Mailing Problem
    D deezZ

    Hi, I have made a small application in ASP.Net in which whenever the user registers a mail is send to his/her account. It is working sucessfully on my Local machine. But when i deploy it on the server it is giving some error. Following is the snippet from web.config

    <system.net>
    <mailSettings>
    <smtp from="admin@formbag.com">
    <network host="someipaddress" port="25" userName="username" password="password" defaultCredentials="true" />
    </smtp>
    </mailSettings>

    </system.net>
    

    Is there some settings I am missing on server or something else. Thanks in advance.!

    ASP.NET sysadmin help csharp asp-net com

  • Windows 2003 Printing Problem
    D deezZ

    Hi, I have setup 2 Windows 2003 Standard Edition Servers. On one of the server people do a remote login and access their data from the another server through map network drive. I am facing one severe problem... after the employee takes our one printout , he has to log off and log back in to take another print, otherwise the print comes out with some missing data, or blank. Please help me to solve this problem. Thanks in advance.

    System Admin sysadmin help workspace

  • Running VLC-Unicast Stream from C#/ASP.Net
    D deezZ

    Hi, I have created a Webpage, and on the click of a certain link i want to run a unicast stream from VLC giving an output of RTSP. Please help. Regards

    ASP.NET csharp asp-net help

  • Running VLC-Unicast Stream from C#
    D deezZ

    Hi, I have created a Webpage, and on the click of a certain link i want to run a unicast stream from VLC giving an output of RTSP. Please help. Regards

    C# csharp help

  • Best fit algo
    D deezZ

    Hi, All of you must have herd of Best fit also, but i would give a brief , just in case. Say i have slots of 50 KB, and there are some codes of different sizes say [10KB,11KB,23KB,34KB,2KB,28KB,31KB,9KB] Now i have to fit all the elements in the different 50KB Slots such that i make the optimum use of the space. Like: 31+9+10 = 50KB --- 1st slot. 11+34 = 45KB --- 2nd slot... I need an algo for the same in C#.. Thanks in advance...

    C# csharp

  • Best Fit Algo.
    D deezZ

    Hi, All of you must have herd of Best fit also, but i would give a brief , just in case. Say i have slots of 50 KB, and there are some codes of different sizes say [10KB,11KB,23KB,34KB,2KB,28KB,31KB,9KB] Now i have to fit all the elements in the different 50KB Slots such that i make the optimum use of the space. Like: 31+9+10 = 50KB --- 1st slot. 11+34 = 45KB --- 2nd slot... I need an algo for the same in C#.. Thanks in advance...

    Algorithms csharp

  • Dynamic Controls.
    D deezZ

    Hi, I have created a UserControl, and i am trying to add that control in a form in a flowlayout panel. The User Control is not visible in the flowlayout panel for i dont know what reason...:confused: PLz help.

    C# help
  • Login

  • Don't have an account? Register

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