i knw tat... i ve tried it long back ago...
mithun narayanan
Posts
-
How to get mac address of a client system in asp.net -
How to get mac address of a client system in asp.netThank u for the response..
-
How to get mac address of a client system in asp.netThank u for the response.. i ll try this nd revert ..
-
How to get mac address of a client system in asp.netSorry i cant use IP... if am using it i cant uniquly identify systems under a particular network... is ther any other way... i can it thru javascript but i ve to enable ActiveX which i dont want... :( is ther any other way.??
-
How to get mac address of a client system in asp.netHi All. How to get mac address of a client system in asp.net?? I need to identify client system uniquely other than using IP address. If there is any other way for achieving the same please suggest... Thanks and Regards Mithun Narayanan.
-
Interop ExcelHi all, i am using Interop for excel. i need to set border style as solid and border color for particular cells. am using the following code, which is not working.... Please correct it...
oRange = (Excel.Range)oSheet.Cells[i, j+1]; oRange.Borders.Weight = BorderStyle.Solid; oRange.Cells.Borders.ColorIndex = 11;
Thanks and regards -
Interop ExcelHi all, i am using Interop for excel. i need to set border style as solid and border color for particular cells. am using the following code, which is not working.... Please correct it... <code> oRange = (Excel.Range)oSheet.Cells[i, j+1]; oRange.Borders.Weight = BorderStyle.Solid; oRange.Cells.Borders.ColorIndex = 11; </code> Thanks and regards
-
Asp.net Excel InteropThanks for the Reply..... I have found the solution.... for hiding first column Excel.Range rangen2 = oSheet.get_Range(oSheet.Cells[5, 4]); rangen2.EntireColumn.Hidden = true;
-
Asp.net Excel InteropThanks for the Reply..... I have found the solution.... for hiding first column Excel.Range rangen2 = oSheet.get_Range(oSheet.Cells[5, 4]); rangen2.EntireColumn.Hidden = true; :thumbsup:
-
Asp.net Excel InteropI am using interop for creating excel .. i ve cretaed the excel file. Now i need to hide or delete some of the columns.... Can u plz tell me the code for that... Thanks in Regardss....
-
Interop ExcelI am using interop for creating excel .. i ve cretaed the excel file. Now i need to hide or delete some of the columns.... Can u plz tell me the code for that... Thanks in Regardss....
-
PostBack From javascriptput a hidden button in your page lets say "btnHidden" Set its style="display:none;" call btnhidden.Click(); in javascript watever code written in btnHidden's event will be excuted.. Hope this wil help...
-
PostBack From javascriptput a hidden button in your page lets say "btnHidden" Set its style="display:none;" call btnhidden.Click(); in javascript watever code written in btnHidden's event will be excuted.. Hope this wil help.
-
Interop ExcelI am using it in asp .net itself... code behind is C# .... please let me know if it is possible or not......:confused: Thanks in advnce...
-
Interop ExcelIs it possible to insert dynamically generated html table directly into an Excel using interop. Please reply... Thanks in advance,,,,
-
javascript written in code behind not working when update panel is usedThnk u.....
-
javascript written in code behind not working when update panel is usedno am not using master page..
-
javascript written in code behind not working when update panel is usedis there any way to fix this issue.... what is ur suggestion???
-
javascript written in code behind not working when update panel is usedString strFilenotFound = "<script language=JavaScript> "; strFilenotFound += " var s=confirm('Do you really want to go to this page??');if(s==true){alert('ya')} else {alert('no')}"; strFilenotFound += "</"; strFilenotFound += "script>"; if (!this.IsStartupScriptRegistered("Startup")) this.RegisterStartupScript("Startup", strFilenotFound); am calling this script on a button click.Am using update panel in this page. if am using the same code in some other page without update panel it's working fine.. please provide a solution... thanks in advance..
-
OLEDB and EXCEL Worksheet Problemstring constr = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source=" + Serverpath + "\\" + Session.SessionID + "1" + "." + fileext + ";Extended Properties=\"Excel 8.0;HDR=NO;IMEX=1\""; OleDbConnection con = new OleDbConnection(constr); con.Open(); OleDbCommand com = new OleDbCommand("SELECT * FROM [Sheetname$]", con); In the query sheetname is worksheet name. my sheet name will change frequently. is ther any way to access sheet name using sheet INDEX its very urgent ...... Thnaks in advance....