116 Posted Topics

Member Avatar for sniigg

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,

Member Avatar for sniigg
0
113
Member Avatar for rachS25

[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,

Member Avatar for rachS25
0
199
Member Avatar for dougancil

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,

Member Avatar for jbrock31
0
81
Member Avatar for rohitmanhas_12

You may go through the article below: [url]http://msdn.microsoft.com/en-us/library/ms178581.aspx[/url] Regards,

Member Avatar for kvprajapati
0
142
Member Avatar for dawsonz

I think the following article may be helpful for you: [url]http://msdn.microsoft.com/en-us/library/aa479350.aspx[/url] Regards,

Member Avatar for dawsonz
0
90
Member Avatar for Sinha's

You can check the following article about this error: [url]http://support.microsoft.com/kb/555332[/url] Thanks.

Member Avatar for Sinha's
0
300
Member Avatar for Batoul88

You can use code like the following: [CODE]group.GroupID = new Guid( db.ExecuteScalar( ... ) );[/CODE] Hope it helps.

Member Avatar for catherine sea
0
53
Member Avatar for Traicey

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 …

Member Avatar for Traicey
0
742
Member Avatar for katzraya
Member Avatar for roraa

Check out this article to see if it helps: [url]http://support.microsoft.com/default.aspx/kb/313635[/url] Thanks, --------------------- Catherine Sea <URLs SNIPPED>

Member Avatar for chandru7
0
107
Member Avatar for facadie

You may check this thread talking about this: [url]http://www.daniweb.com/forums/thread76025.html[/url] Thanks, --------------------- Catherine Sea <URLs SNIPPED>

Member Avatar for catherine sea
0
50
Member Avatar for get2tk

Check ASP.NET tutorial at w3schools: [url]http://www.w3schools.com/aspnet/default.asp[/url] Thanks,

Member Avatar for jbennet
0
160
Member Avatar for sandani1225

Check the thread here to see if it helps: [url]http://forums.slipstick.com/showthread.php?t=27386[/url] Thanks, --------------------- Catherine Sea <URLs SNIPPED>

Member Avatar for catherine sea
0
104
Member Avatar for a_arunsankar

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>

Member Avatar for catherine sea
0
68
Member Avatar for it2051229
Member Avatar for robertlees

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.

Member Avatar for catherine sea
0
88

The End.