Not much of help, already visited the links but... But thanks for help. If you have anything more then plz post the link.
deezZ
Posts
-
Using Open Flash Chart 2 -
Javascript Code Comparing Two textbox's value<!-- 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. -
How to get HTML controls in code behindHi 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
-
regarding Page redirectionRename 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:
-
Using Open Flash Chart 2Hi, 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.
-
CompositeControl AJAX ProblemHi, 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 implementAjaxControlToolkit.IControlResolver
on my class but didnt work. Please help. -
Mailing ProblemNopes.. there are no firewall which is blocking the mails.
-
Mailing ProblemHi. How do I need to configure the SMTP server ..
-
Mailing ProblemOh 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.
-
Mailing ProblemIs 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.
-
Mailing ProblemNo errors.. I have checked the event viewer as well as my application lob, but no errors. Its just the mails are not going.
-
Mailing ProblemHi, 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.!
-
Windows 2003 Printing ProblemHi, 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.
-
Running VLC-Unicast Stream from C#/ASP.NetHi, 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
-
Running VLC-Unicast Stream from C#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
-
Best fit algoHi, 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...
-
Best Fit Algo.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...
-
Dynamic Controls.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.