i am searching... but i could not find any use full link to my work yet...
kulandaivel_mca2007
Posts
-
on line web application -
on line web applicationthx for ur rply it is usefull to me... i follow that... can u provide sample links..
-
on line web applicationam 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...
-
link buttonu are giving solution for excel file present in my project... it is working fine.... but my requirement is opening the excel file present D:
-
link buttonu are right.... i have only the file name i have to open that how can do this...
-
link buttonREPORT 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:
-
link buttonhow to open a excel using link button...
-
opening excel documentReport1 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
-
Re: opening excel documentReport1 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...
-
opening excel documenthow can i open excel document using asp.net... is it possible to open using link button?
-
how to apply css to my asp.net page [modified]i gave this... and i place this coding in part nothing happens...
-
how to apply css to my asp.net page [modified]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
-
chechk boxi 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..
-
asp.netgood idea..
-
time ou errorpublic SqlConnection objCon = new SqlConnection("Data Source=VEESERV2;Initial Catalog=Inventory_VS;User ID=sa;Password=sa;Connect Timeout = 60"); is it right?
-
time ou errorTimeout 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...
-
stop the flow the projectpublic 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....
-
stop the flow the projecthow i can do this... guide me..
-
stop the flow the projects 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(); } }
-
stop the flow the projectis anyother way available.... like goto,break,Abandon...