hi all, i need the sample coding for FTP connection in vb.net for the following server types 1)FTP over SSL(Implicit encryption) 2)FTP over SSL(explicit encryption)... Please if any one knows about it..send me the sample code
thank u
hi all, i need the sample coding for FTP connection in vb.net for the following server types 1)FTP over SSL(Implicit encryption) 2)FTP over SSL(explicit encryption)... Please if any one knows about it..send me the sample code
thank u
i have created a new account with adminstrator rights.still its not working...need help
thank u
Iam using the following code in a dll -- encrypting a file using gpg exe. Dim objEncrypt As New System.Diagnnostics.Process With objEncrypt .StartInfo.FileName = "C:/program files/gpg.exe" .StartInfo.Arguments = sArguments .StartInfo.UseShellExecute = False .StartInfo.RedirectStandardOutput = True .StartInfo.CreateNoWindow = True .Start() .WaitForExit() End With this code works when calling from an application...but doesnt work when callingfrom windows service. Please help
thank u
How can I login programmatically to a web site? In other words, I want to avoid the login prompt and automatically log user in through code.. Thanks...
thank u
I Have been generating a text file using streamWriter in my project.I have to set the readonly attribute of that text file to true. can anyone please help me to solve this.
thank u
i had to add a help file...can any one guide me how to create help files in windows application
thank u
thnks.... my requirement is i need a grid with two rows and two cols with a textbox inside a gridcell.... i have a add button .... when an user clicks the add button...an extra row has to be generated...the values entered by the user in the textbox should be maintained i need the complete codings..can u plz send me that....
thank u
using a grid i have created two rows by binding the hidden template field with a datasource in pageload event, Now i have to Add a new row in the grid using a button click....maitaining the values in the textbox in the grid entered by user.... ========================= /* <%# Eval("ROW") %> */ coding in page_load event is =================================== protected void Page_Load(object sender, EventArgs e) { Addrow(dgLocsch, 2); } private void Addrow(DataGrid dg, int NoOfRows) { DataTable dt = new DataTable(); dt.Columns.Add("ROW"); for (int i = 1; i <= NoOfRows; i++) { DataRow dr; dr = dt.NewRow(); dr["ROW"] = i.ToString(); dt.Rows.Add(dr); } dg.DataSource = dt; dg.DataBind(); } can any one help me......
thank u
using a grid i have created two rows by binding the hidden template field with a datasource in pageload event, Now i have to Add a new row in the grid using a button click....maitaining the values in the textbox in the grid entered by user.... ========================= <%# Eval("ROW") %> coding in page_load event is =================================== protected void Page_Load(object sender, EventArgs e) { Addrow(dgLocsch, 2); } private void Addrow(DataGrid dg, int NoOfRows) { DataTable dt = new DataTable(); dt.Columns.Add("ROW"); for (int i = 1; i <= NoOfRows; i++) { DataRow dr; dr = dt.NewRow(); dr["ROW"] = i.ToString(); dt.Rows.Add(dr); } dg.DataSource = dt; dg.DataBind(); } can any one help me......
thank u
Thks for ur advice......ya i solved the issue.......
thank u
hi guys, i got an error while i was migrating one of the webproject developed in 1.1 to 2.0. i got error in one dll reference in global.asax. it says "The type 'Ims.Tmpc.Global' is ambiguous: it could come from assembly 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\tmpc\0645d1b5\4ea8c73e\App_Code.h0ihzjo3.DLL' or from assembly 'c:\inetpub\wwwroot\tmpc\bin\Tmpc2003.DLL'. Please specify the assembly explicitly in the type name. " i need thesolution for this pbm...its urgent.... if anyone know what is wrong here, please share your knowledge with me.
thank u
Hi, I planed to do a chat room project like google chat.. can any one guide me...
thank u
Hi, i need to refresh the mainpage from a popup as shown below Main Page ---> Popup1(opened from main page) ----> Popup2(opened from Popup2) i have to refresh the mainpage when popup2 gets closed.... how can i do this....
thank u
i have to refresh a mainpage from a popup window whose parent is another popup which is opened from the main page..... i have to do this using javascript... can any one help me....
thank u
This is the Data i have Time interval = 30 min starting Time = 9:30 am End Time = 9:30 pm I have to get the Time intervals as follows 9:30 am to 10:00 am 10:00 am to 10:30 am 10:30 am to 11:00 am . . . .9:00 pm to 9:30 pm How can v get this in asp.net
thank u