116 Posted Topics
Re: You can use ADO.NET to retrieve the values. Check the article below and let me know if it helps: [url]http://www.dotnetspider.com/DotNet-Tutorial-284.aspx[/url] Regards, | |
Re: [QUOTE]however I think because it is not actually using.sytem.linq it is not recognising my connString.[/QUOTE] Did you do some tests to verify whether it's recognizing your connString? Cheers, | |
Re: Hi Doug, I think you may call uploading method in the on_click event and then take to the destination page when the uploading is finished. Thanks, | |
Re: You may go through the article below: [url]http://msdn.microsoft.com/en-us/library/ms178581.aspx[/url] Regards, | |
Re: I think the following article may be helpful for you: [url]http://msdn.microsoft.com/en-us/library/aa479350.aspx[/url] Regards, | |
Re: You can check the following article about this error: [url]http://support.microsoft.com/kb/555332[/url] Thanks. | |
Re: You can use code like the following: [CODE]group.GroupID = new Guid( db.ExecuteScalar( ... ) );[/CODE] Hope it helps. | |
Re: Try the code below: [CODE]<%@ Page Language="c#" AutoEventWireup="false"%> <% try { int iFileLength; HttpFileCollection files = HttpContext.Current.Request.Files; HttpPostedFile uploadfile = files["RemoteFile"]; String strImageName = uploadfile.FileName; iFileLength = uploadfile.ContentLength; Byte[] inputBuffer = new Byte[iFileLength]; System.IO.Stream inputStream; inputStream = uploadfile.InputStream; inputStream.Read(inputBuffer,0,iFileLength); String strConnString = "Data Source=MYPC\\SQLEXPRESS;Initial Catalog=WebTwain;User ID=sa;Pwd=sa;"; System.Data.SqlClient.SqlConnection sqlConnection = new … | |
| |
Re: Check out this article to see if it helps: [url]http://support.microsoft.com/default.aspx/kb/313635[/url] Thanks, --------------------- Catherine Sea <URLs SNIPPED> | |
Re: You may check this thread talking about this: [url]http://www.daniweb.com/forums/thread76025.html[/url] Thanks, --------------------- Catherine Sea <URLs SNIPPED> | |
Re: Check ASP.NET tutorial at w3schools: [url]http://www.w3schools.com/aspnet/default.asp[/url] Thanks, | |
Re: Check the thread here to see if it helps: [url]http://forums.slipstick.com/showthread.php?t=27386[/url] Thanks, --------------------- Catherine Sea <URLs SNIPPED> | |
Re: You may check the following thread to see if it helps: [url]http://social.msdn.microsoft.com/Forums/en-US/vssourcecontrol/thread/67ca3476-78f6-4fe2-b2cf-e403eee04885[/url] Thanks, --------------------- Catherine Sea <URLs SNIPPED> | |
Re: Hi, To Add users and Create database, please go to VSS Admin tool. When those are ready, you can login in from VSS Client to add files/apps to the DB. More reference: [url]http://msdn2.microsoft.com/en-us/library/h1h3eyyk(VS.80).aspx[/url] Thanks. |
The End.