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
R

Rakheesh Chalil

@Rakheesh Chalil
About
Posts
14
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Time comparison
    R Rakheesh Chalil

    Hi, I hope you can use CompareTo() method available in DateTime class. Basically you need to provide your current that will be available in your system. You can get it through using DateTime.Now Then get the Datetime from access table and use the CompareTo method to findout the difference. Hope this will help Rakheesh

    ASP.NET database

  • Doubt
    R Rakheesh Chalil

    Hi, While rendering to HTML, multiline textbox will be considered as text area. So if you can consider the same in the condition specified, then it will work fine The code is given below function ClearTextBoxes() { for (i=0;i < document.Form1.elements.length;i++) { if (document.Form1.elements[i].type == "text" ||document.Form1.elements[i].type == "textarea" ) { document.Form1.elements[i].value=""; } } } hope this will work for you Rakheesh

    ASP.NET

  • Send a Mail via Exchange Server
    R Rakheesh Chalil

    Hi, Using System.Net.Mail class in .NET 2.0\ using System.Net.Mail; { string mailFrom = "abc@cdf.com"//From address goes here string mailTo = "xyz@klm.com"//To address goed here MailMessage mailMessage = new MailMessage(mailFrom, mailTo); mailMessage.Subject = "Test";//Your mail Subject goes here mailMessage.Body = "This is just a test";//Your mail body goes here mailMessage.Priority = MailPriority.Normal; string server = "SMTPServer Name goes here"; SmtpClient client = new SmtpClient(server); //Send the email client.Send(mailMessage); }

    C# sysadmin question

  • View State problem in pages
    R Rakheesh Chalil

    SZrikanth Please check the following site for more information http://support.microsoft.com/default.aspx?scid=kb;EN-US;323744[^] Thanks Rakheesh

    ASP.NET help csharp javascript asp-net design

  • Which Graph Control to Use?
    R Rakheesh Chalil

    Hi Arun, Some of our applications, we have used ChartFX http://www.softwarefx.com/[^]controls and Dundas http://www.dundas.com/[^]. Both are nice tools. Also you can create any test application using both chart controls and check for the memory allocation using any profiler tool and decide which one you need to go for Thanks Rakheesh

    ASP.NET data-structures question

  • Building Web site using NAnt tool
    R Rakheesh Chalil

    Hi, Please visit the site http://nant.sourceforge.net/release/latest/help/fundamentals/buildfiles.html[^] for more details. Also visit some of the articles related to NAnt in CodeProject itself Hope you can star from here

    ASP.NET tutorial question csharp asp-net tools

  • Data Grid filtering
    R Rakheesh Chalil

    If you want to disply only a particular user's items only in the datagrid, you will have to create a different datasource for that. For example, if you are using dataset or datatable as datasource, you will have to create a dataview and filter the particular user id. Then bind the datagrid with the dataview as datasource hope this will help

    ASP.NET question csharp css asp-net

  • Sample Asp.net application
    R Rakheesh Chalil

    Hi, This is typical N-Tier application and it is easy to implement. Please refer the below site http://msdn2.microsoft.com/en-us/library/ms973279.aspx[^] Regards Rakheesh

    ASP.NET csharp database asp-net sharepoint

  • DAAB Configuration Problem
    R Rakheesh Chalil

    Hi, Please make sure that the assembly and the project name specified in the configSections of the app.config is same as what you have in your project. Thanks Rakheesh

    C# database xml help workspace

  • Button Border
    R Rakheesh Chalil

    Hi, From your question, it is not clear that what kind of application are you using. If it is an ASP.NET application, you can set the look and feel of the control by setting the appropriate css class. You may need to write appropriate style sheet class for this. If it is a Windows based application, you can set any of the options available in the propertly window. --Rakheesh

    C# question

  • Dynamically data retrieval
    R Rakheesh Chalil

    Hi, ASP.NET Datagrid has an event known as ItemDataBound event. Basically this event will get fired when each row is binding to the datagrid. So for displaying the image button and label, you can itemtemplate of the datagrid and for databinding to these controls, you can use ItemDataBound event The syntax of ItemDataBound event is given below private void YourDataGridName_ItemDataBound(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e) { //Here you should get the dynamic data from Database/file system etc. and bind to the controls } --Rakheesh

    C# csharp database help question

  • Validators not getting fired
    R Rakheesh Chalil

    From your message it is not clear that which validation control are you using. Anyway, please make sure that you have enabled the validation control by using Enabled property. Apart from that check whether you have enabled client side validation for that page. If yes, give appropriate error message so that you will get notified. Hope this will help you Thanks Rakheesh

    ASP.NET question

  • How can we binddata?
    R Rakheesh Chalil

    Create one datatable in your code behind file. (The DataTable is an in-memory representation of a block of data).Get the data from the database in two different datasets. Then fill the created data table with data from the different datasets available from different tables. (You have to programatically fill each column in the datatable). After filling the manually created datatable, bind the datagrid with this table. From the above solution, you are binding the data grid to the manually created datatable in your code. The datasource can be anything. But be cautious this can reduce the performance of the application. Hope this will help you Thanks Rakheesh

    ASP.NET database question

  • web config error
    R Rakheesh Chalil

    This is a common error which happens when there is an error in the Web.config file. Please check your Web.config throughly and find out any spelling mistakes or any mismatch are there in the file. After making sure that Web.config is valid, try to run the application again. Thanks Rakheesh -- modified at 10:50 Wednesday 19th April, 2006

    ASP.NET help csharp asp-net sysadmin debugging
  • Login

  • Don't have an account? Register

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