| Author |
Message |
Topic: Reading Excel spread sheet data problem in c# |
craig
Replies: 1
Views: 90
|
: ADO.Net Posted: Wed Dec 30, 2009 12:10 pm Subject: Reading Excel spread sheet data problem in c# |
Hi Manoj,
i too faced the similar issue. i solved with the following procedure. i.e in the connection string "HDR=Yes;" indicates that the first row contains columnnames, not data. &q ... |
Topic: File Downloading using WebClient's DownloadFile in Asp.net |
craig
Replies: 1
Views: 142
|
: Asp.Net Posted: Wed Nov 04, 2009 11:55 am Subject: File Downloading using WebClient's DownloadFile in Asp.net |
Hi,
poke around the given link. you will get relevant stuff about the file downloading concept using asp.net.
http://www.csharpfriends.com/Articles/getArticle.aspx?articleID=424&page=1
... |
Topic: Encryption and Decryption in Asp.net using C# |
craig
Replies: 1
Views: 108
|
: Asp.Net Posted: Tue Nov 03, 2009 12:52 pm Subject: Encryption and Decryption in Asp.net using C# |
Hi,
Here is the following code for Encoding & Decoding the data.
private string base64Encode(string sData)
{
try
{
byte[] encData_byte = new byte[s ... |
Topic: URL Rewriting with ASP.NET |
craig
Replies: 0
Views: 190
|
: Asp.Net Posted: Wed Jul 01, 2009 5:18 am Subject: URL Rewriting with ASP.NET |
Hi all,
I found few resources on URL Rewriting with ASP.NET. go through the following site. it has code to download. download and run the downloaded files.
URL: http://www.codeproject.com/K ... |
Topic: Retrieving the COM class factory for component with.... |
craig
Replies: 1
Views: 151
|
: .Net Help Posted: Thu Jun 18, 2009 4:21 am Subject: Retrieving the COM class factory for component with.... |
Hi,
i have referenced a dll file in my application. but i am getting the following error when create instance of the class. please let me know the cause for this error.
MyLibrary.WNe ... |
Topic: Failed to access IIS metabase problem |
craig
Replies: 1
Views: 131
|
: Asp.Net Posted: Wed Jun 03, 2009 10:46 am Subject: Failed to access IIS metabase problem |
Hi ,
please go through the following article.
Possible Cause:-
When you install IIS AFTER .NET 2.0 framework, the rights of the ASPNET user had not been set correctly.
Resolution
... |
Topic: how to pass strings with white space? |
craig
Replies: 1
Views: 148
|
: Asp.Net Posted: Thu May 28, 2009 6:36 am Subject: how to pass strings with white space? |
hi Experts,
((Label)e.Row.FindControl("lblkeyword1")).Text = " <span id='test' style='cursor:pointer;color:#990000' onclick=javascript:Start('" + data +"'>" ... |
Topic: Export data from Excel to existing SQL Server table |
craig
Replies: 1
Views: 277
|
: ADO.Net Posted: Mon May 25, 2009 11:05 am Subject: Export data from Excel to existing SQL Server table |
Hi Experts.
I have gone through the previous post regarding exporting table data to excel. but i need to export data from excel to existing sql server table. please can any one let me know the ... |
Topic: event.keycode problem Firefox |
craig
Replies: 0
Views: 281
|
: Asp.Net Posted: Fri May 15, 2009 5:33 am Subject: event.keycode problem Firefox |
Solution for event.keycode problem for Firefox and Chrome
I was trying to identify which key is pressed by user so that I can perform operation accordingly. keyup event works perfectly with IE, b ... |
Topic: mapping network drive using c# |
craig
Replies: 1
Views: 1022
|
: Programming with C# Posted: Mon May 04, 2009 12:10 pm Subject: mapping network drive using c# |
Hi,
i have worked on it. i have googled and found good article relevant to this issue. please refer the following site. you will get some stuff.
link :
http://www.codeproject.com/KB/system/ ... |
Topic: Server.Transfer() resulting Unable to evaluate expression.. |
craig
Replies: 1
Views: 192
|
: Asp.Net Posted: Mon Apr 06, 2009 6:56 am Subject: Server.Transfer() resulting Unable to evaluate expression.. |
Hi,
Server.Transfer("Employees.aspx") in my code results "Unable to evaluate expression because the code is optimized or a native frame is on top of the call stack." |
Topic: How to write Dataset to a XML file using c# |
craig
Replies: 1
Views: 136
|
: ADO.Net Posted: Wed Apr 01, 2009 4:08 am Subject: How to write Dataset to a XML file using c# |
Hi,
it very simple in . you can write data of Dataset using the following method.
dsData.WriteXml("test.xml",System.Data.XmlWriteMode.IgnoreSchema);
in the above method da ... |
Topic: The connection was not closed. The connection's current stat |
craig
Replies: 1
Views: 183
|
: ADO.Net Posted: Tue Sep 02, 2008 3:07 am Subject: The connection was not closed. The connection's current stat |
You will check the connection state as follows.
if (con.State == ConnectionState.Closed)
{
con.Open();
}
else
{
... |
Topic: How to Build Connection Strings |
craig
Replies: 1
Views: 239
|
: ADO.Net Posted: Tue Aug 19, 2008 6:34 am Subject: Building Conneciton String using UDL |
Hi all,
A good user interface for building connection strings. we can build connection strings using Universal Data Link file. it is provided by Microsoft.
This file works just like th ... |
Topic: How to add Link Button to Table Control in asp.net |
craig
Replies: 1
Views: 526
|
: Asp.Net Posted: Mon Aug 11, 2008 5:52 am Subject: How to add Link Button to Table Control in asp.net |
hi all,
here is the code to add a linkButton to a table control.
Code :
int numberOfItems = 12; // for example
int numberOfCells = 5;
// Determine how ... |
| |