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

kulandaivel_mca2007

@kulandaivel_mca2007
About
Posts
45
Topics
18
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • on line web application
    K kulandaivel_mca2007

    i am searching... but i could not find any use full link to my work yet...

    ASP.NET csharp asp-net question announcement

  • on line web application
    K kulandaivel_mca2007

    thx for ur rply it is usefull to me... i follow that... can u provide sample links..

    ASP.NET csharp asp-net question announcement

  • on line web application
    K kulandaivel_mca2007

    am working in online application asp.net with c#.. i have to create dynamic pages... that means i have to update day to day events... how can i do this... send me suggestions... thanks in advance...

    ASP.NET csharp asp-net question announcement

  • link button
    K kulandaivel_mca2007

    u are giving solution for excel file present in my project... it is working fine.... but my requirement is opening the excel file present D:

    ASP.NET tutorial

  • link button
    K kulandaivel_mca2007

    u are right.... i have only the file name i have to open that how can do this...

    ASP.NET tutorial

  • link button
    K kulandaivel_mca2007

    REPORT I USED THIS CODE TO OPEN EXCEL SHEET... THE ABOVE EXCELL SHEET IS PRESENT IN MY PROJECT ITSELF.... I WANT TO JUST OPEN AND SEE THE EXCEL SHEET WHICH WAS LOCATED IN MY d:

    ASP.NET tutorial

  • link button
    K kulandaivel_mca2007

    how to open a excel using link button...

    ASP.NET tutorial

  • opening excel document
    K kulandaivel_mca2007

    Report1 when i click the above link button the excel document report1 is opened... it located in my project itself... now my need is if i click the link button... i have to open a excel doc located in my D: modified on Tuesday, February 10, 2009 11:37 PM

    ASP.NET question csharp asp-net

  • Re: opening excel document
    K kulandaivel_mca2007

    Report1 when i click the above link button the excel document report1 is opened... it located in my project itself... now my need is if i click the link button... i have to open a excel doc located in my D: how can do this help me...

    ASP.NET

  • opening excel document
    K kulandaivel_mca2007

    how can i open excel document using asp.net... is it possible to open using link button?

    ASP.NET question csharp asp-net

  • how to apply css to my asp.net page [modified]
    K kulandaivel_mca2007

    i gave this... and i place this coding in part nothing happens...

    ASP.NET csharp css asp-net tutorial

  • how to apply css to my asp.net page [modified]
    K kulandaivel_mca2007

    this is my css .top { width:200px; height :100px; margin :0 0 0 0; background-image :url(IMAGES/theme1.bmp); color:Green; } i want to apply my css to this portion..

    i trid but no effective answer... modified on Saturday, February 7, 2009 5:48 AM

    ASP.NET csharp css asp-net tutorial

  • chechk box
    K kulandaivel_mca2007

    i want to validate the check box present inside the datagrid... checked or not... asp.net using c# foreach (DataGridItem i in DataGrid1 .Items ) { CheckBox chk = (CheckBox)i.FindControl ("chkbox"); if (chk.Checked ) { } } // i use this to code to add checkbox in data grid if u not able to understand my question plz ask me i will explain.. it is not working properly..

    .NET (Core and Framework) csharp css asp-net question

  • asp.net
    K kulandaivel_mca2007

    good idea..

    ASP.NET csharp asp-net tutorial

  • time ou error
    K kulandaivel_mca2007

    public SqlConnection objCon = new SqlConnection("Data Source=VEESERV2;Initial Catalog=Inventory_VS;User ID=sa;Password=sa;Connect Timeout = 60"); is it right?

    .NET (Core and Framework) sysadmin help

  • time ou error
    K kulandaivel_mca2007

    Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding. when i try to read large amount of data from online and add it to my combo box this error occurs what can i do... send me suggesstions...

    .NET (Core and Framework) sysadmin help

  • stop the flow the project
    K kulandaivel_mca2007

    public bool mthOpenConnection() { try { objprop.J = 0; string[] datasource = File.ReadAllLines("d:\\k2.txt"); if (datasource[0] != "") { objprop.connection = "Data Source=" + datasource[0] + ";Initial Catalog=Inventory_VS;User ID=sa;Password=sa"; objCon = new SqlConnection(objprop.connection); if (objCon.State != ConnectionState.Open) { objCon.Open(); } } } catch (Exception ex) { MessageBox.Show("ENTER CORRECT DATA SOURCE NAME IN UR TEXT FILE"); return false; } return true; } how i can throw my exceptions....

    .NET (Core and Framework) question help

  • stop the flow the project
    K kulandaivel_mca2007

    how i can do this... guide me..

    .NET (Core and Framework) question help

  • stop the flow the project
    K kulandaivel_mca2007

    s u r right... see this peace of code... this is my loging forms's button(submit) click event... when the program try to read table values error occurs... private void button2_Click_1(object sender, EventArgs e) { objproperties.Username = txtuname.Text; objproperties.Password = txtpword.Text; objDSLogin = objfunction.mthGetLogin(objproperties); if (objDSLogin.Tables[0].Rows.Count > 0) { if (objDSLogin.Tables[0].Rows[0]["status"].ToString() == "User") { objproperties.Username = txtuname.Text; objfunction.mthUsernameInsert(objproperties); this.Hide(); UserForm uf = new UserForm(); uf.Show(); } else if (objDSLogin.Tables[0].Rows[0]["status"].ToString() == "Admin") { this.Hide(); AdminForm1 af = new AdminForm1(); af.Show(); } else { label4.Text = "Login Failed... Try Again"; label4.Visible = true; txtpword.Text = ""; txtuname.Focus(); } } else { label4.Visible = true; txtpword.Text = ""; txtuname.Focus(); } }

    .NET (Core and Framework) question help

  • stop the flow the project
    K kulandaivel_mca2007

    is anyother way available.... like goto,break,Abandon...

    .NET (Core and Framework) question 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