- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
9 Posted Topics
I have a web application that I create that works great on my computer. I have an account with 1and1, so I uploaded the database and the files. I am also using Linq to SQL, so I have a dbml file. But, everytime I run a function that needs the … | |
Re: May be you're a beginner to MySQL. So I strong advise you to use toad for mysql. It's free. [url]http://www.toadsoft.com/toadmysql/[/url] You'll love it. If you can connect to the database, and run queries, we can show you how to use C# to do it. | |
I am trying to setup 3 projects - Development, Production and a Tracking one. So I created 3 folders, DEV, PROD, Tracker DEV is connected to [url]www.devexample.com[/url] PROD is connected to [url]www.prodexample.com[/url] Tracked is connected to tracker.devexample.com Here is where I'm having problems: 1- Each of the above application is … | |
This is painfully annoying! Everytime I make a change to my web application and publish, I have to wait until VS2008 or VS2010 publishes the entire site. I have 2 folders which have ~70 folders [U]each![/U]. But they are static and will not change ever so I want to see … | |
Re: All data goes to the email address? What do you mean? Do you mean that you will send the email to three diferrent email addresses? If that's the case, you do it this way: [CODE] SmtpClient smtp = new SmtpClient("smtpaddress"); smtp.Credentials = new NetworkCredentials("username","password"); MailMessage message = new MailMessage(); message.From … | |
Hi All, I'm trying to create a table that has 2 columns and some number of rows. I would like to add an additional row at the end that is one cell which extends the entire row! I'll show you a simplified code. The problem is that the last row … | |
Re: Secret! :P In any case, you can give us a sample code without telling us what's going on. MSA is Microsoft access? Hmmm... never heard of this jargon before. Anyways! What you're asking for is not hard. You need to connect C# to the database and run a query. You … | |
Re: You save the path of the dlls. Put it as a constant fields in one of your classes. (e.g. public static string dllPath = "C:\\") and when you start the application, do this: Assembly.LoadFile(dllPath + "functions.dll") | |
Hi All, I have 6 fields (3 on the top) and (3 on the bottom). The 3 on the top are: Current email: New email: Confirm email: <Submit> <Cancel> Current password: New password: Confirm password: <Submit> <Cancel> Also each one has a required field validations. Now if someone fills the … |
The End.