Click here to Skip to main content
15,898,134 members

Comments by Zukiari (Top 38 by date)

Zukiari 8-May-14 1:07am View    
Can you please explain the requirement?
Zukiari 9-Apr-14 7:48am View    
Hi,
Thank you for the answer.
Zukiari 24-Jul-13 2:16am View    
I want to open the excel file in a web page, not in seperate window and from the browser itself there should be all options like sorting and filtering.
Zukiari 2-Jul-13 7:42am View    
I want all the IP Address or host name that accessing that site. user has to login, but common login ID and password for all.
Zukiari 20-Mar-13 6:01am View    
Hi, Try by assigning the date time value to a variable.
DateTime dt = System.DateTime.Now;
con.Open();
OleDbCommand cmd =
new OleDbCommand(
"insert into coupen(voucher,RS,[Date]) values('" + _password + "','" + TxtAmount.Text + "',"+ dt + ")", con);
int result = cmd.ExecuteNonQuery();
con.Close();