5,346 Posted Topics

Member Avatar for mwenyenia07

Please read this [URL="http://www.asp.net/hosting/tutorials/deploying-your-site-using-visual-studio-cs"]post[/URL].

Member Avatar for Netcode
0
204
Member Avatar for ninjatalon

Have a look at - [url]http://www.daniweb.com/software-development/vbnet/threads/371857/1600381#post1600381[/url]

Member Avatar for AnkitGuru
0
140
Member Avatar for davemac001

Don't dwell upon open source. It is not for beginners like you. Read good books and learn C#, asp.net and .net framework from the scratch. I would like to suggest a book - ASP.NET Unleashed 4.0(VS2010)/3.5 (VS2008).

Member Avatar for shrnmlss6
0
290
Member Avatar for visweswaran28

Please read this [URL="http://stackoverflow.com/questions/1355292/friendly-name-from-google-using-openid"]thread[/URL].

Member Avatar for kvprajapati
0
65
Member Avatar for cerezo_mark

Please take a look at this [URL="http://csharp.net-informations.com/crystal-reports/csharp-crystal-merge-module.htm"]post[/URL].

Member Avatar for cerezo_mark
0
203
Member Avatar for paresh_thummar
Member Avatar for sarc007

Have a look at code-snippet. [code] Image img = Clipboard.GetImage(); if (img != null) { System.IO.MemoryStream ms = new System.IO.MemoryStream(); img.Save(ms, System.Drawing.Imaging.ImageFormat.Png); byte[] bytes = new byte[ms.Length]; ms.Read(bytes, 0, bytes.Length); } [/code]

Member Avatar for himanshi arora
0
2K
Member Avatar for sherinpoulose
Member Avatar for MrBlack
Member Avatar for prit005
0
84
Member Avatar for complete
Member Avatar for kvprajapati
0
176
Member Avatar for Istw

Do you know ADO.NET? Using ADO.NET classes you may establish database connection and execute queries.

Member Avatar for adam_k
0
145
Member Avatar for Fransh
Member Avatar for adam_k
0
140
Member Avatar for Dragonbaki

Are you using "Form Authentication"? What ScottGu said '[URL="http://weblogs.asp.net/scottgu/archive/2005/11/08/430011.aspx"]forms authentication timeout value has changed to be 30 minutes by default[/URL]'.

Member Avatar for Dragonbaki
-1
151
Member Avatar for mogaka

Please read these articles: 1. [URL="http://msdn.microsoft.com/en-us/library/ms178466.aspx"]ASP.NET Compilation Overview[/URL] 2. [URL="http://msdn.microsoft.com/en-us/library/ms228015.aspx"]ASP.NET Web Site Precompilation Overview [/URL]

Member Avatar for kvprajapati
0
55
Member Avatar for shers

Add following code in second Form (say Form2) in which ProgressBar control was added. [code] Public Class Form2 Private Sub Form2_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load Dim tst As New Action(AddressOf Test) ProgressBar1.BeginInvoke(tst) End Sub Sub Test() For i As Integer = 1 To 100 ProgressBar1.Value = i …

Member Avatar for kvprajapati
0
322
Member Avatar for lianpiau

You have to qualifying the column names. eg. DatabaseName.TableName.Column_Name.

Member Avatar for yousafc#
0
120
Member Avatar for kieky
Member Avatar for nik11
0
277
Member Avatar for peter_budo

Thanks Peter! Java7 contains minor stuff but releasing is better then ever. Cool stuff! and here are some useful links I found. 1. [URL="http://blogs.oracle.com/java/entry/moving_java_forward_a_video"]Moving Java Forward: A Video Discussion about Java 7 (Video discussion)[/URL] 2. [URL="https://github.com/sammy8306/JavaMisc/tree/master/Java7Launch"]Java7 samples[/URL] 3. [URL="http://www.slideshare.net/SanderMak/java-7-forkjoin-invokedynamic-and-the-future"]Java 7: Fork/Join, Invokedynamic and the future (Slides)[/URL] 4. [URL="http://www.oracle.com/us/technologies/java/fork-join-framework-428206.pdf"]Divide and Conquer …

Member Avatar for jwenting
2
164
Member Avatar for barriegrant1

Use [URL="http://msdn.microsoft.com/en-us/library/486wc64h.aspx"]FindControl [/URL]method. Please read MSDN blog - [URL="http://blogs.msdn.com/b/scothu/archive/2008/03/26/accessing-controls-in-listview-templates.aspx"]Accessing Controls in ListView Templates[/URL]

Member Avatar for barriegrant1
0
532
Member Avatar for roXy101208

@barriegrant1, It is not a good idea to store images into [URL="http://stackoverflow.com/questions/348363/what-is-the-best-practice-for-storing-uploaded-images"]db[/URL]. @roXy101208, You need to reset ImageUrl path (Image1.ImageUrl=""). (Use methods from the System.IO.FileInfo, DirectoryInfo classes to manage files and folders)

Member Avatar for kvprajapati
0
97
Member Avatar for sinoyolo

The same way you did for other programs. If you have not started learning it, please just pick up a book about c# and learn.

Member Avatar for kvprajapati
0
105
Member Avatar for eoop.org
Member Avatar for apanimesh061

Take a look at this [URL="http://stackoverflow.com/questions/4163404/how-to-convert-framework-4-to-3-5"]thread[/URL].

Member Avatar for CsharpChico
0
185
Member Avatar for naru vaishnaw

Thread Locked. Do not post the same question multiple [URL="http://www.daniweb.com/forums/faq.php?faq=daniweb_policies"]times[/URL]

Member Avatar for kvprajapati
0
55
Member Avatar for anand01

Please have a look at the sticky thread - [URL="http://www.daniweb.com/web-development/jsp/threads/141776"]JSP database connectivity according to Model View Controller (MVC) Model 2[/URL]

Member Avatar for anand01
0
129
Member Avatar for Netcode

Please read this article - [URL="http://weblogs.asp.net/scottgu/archive/2006/12/22/recipe-deploying-a-sql-database-to-a-remote-hosting-environment-part-1.aspx"]Recipe: Deploying a SQL Database to a Remote Hosting Environment (Part 1)[/URL].

Member Avatar for Netcode
-1
286
Member Avatar for dwinn

This happen due to [B]ViewState[/B] feature of asp.net. Use IsPostBack boolean page property to ensure that the list is populated once. Read about [URL="http://msdn.microsoft.com/en-us/library/ms972976.aspx"]ViewState[/URL]. [code] Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs) Handles Me.Load If Not IsPostBack Then 'Your code here End If End Sub [/code]

Member Avatar for dwinn
0
160
Member Avatar for roXy101208

First of all save that (uploaded) image file at your server machine and to show an image set ImageUrl property of Image control. [code] if(FileUpload1.HasFile){ string absolute_path=MapPath("~/" + FileUpload1.FileName); string relative_path="~/" + FileUpload1.FileName; FileUpload1.SaveAs(absolute_path); Image1.ImageUrl=relative_path; } [/code]

Member Avatar for roXy101208
0
89
Member Avatar for AnooooPower
Member Avatar for CaffeineCoder
Member Avatar for Arjun_Sarankulu
Member Avatar for ddanbe
0
184
Member Avatar for ApToon

Welcome. Class diagram includes attributes and methods. Have a look at this [URL="http://en.wikipedia.org/wiki/Class_diagram"]sample.[/URL]

Member Avatar for sametyildirim
0
190
Member Avatar for rajabca

[b]>Syntax Error in Insert Into statement. pls give correct code for me.[/b] [code=text] INSERT INTO TableName (Column1,Column2,Column3,...) VALUES (@para1,@para2,@para3,...) [/code]

Member Avatar for RameshKumar.M
0
176
Member Avatar for somrita

I guess you wanted to know [URL="http://msdn.microsoft.com/en-us/library/dd394698.aspx"]how[/URL] to package and [URL="http://weblogs.asp.net/scottgu/archive/2010/07/29/vs-2010-web-deployment.aspx"]deploy[/URL] asp.net application?

Member Avatar for somrita
0
71
Member Avatar for smoothe19
Member Avatar for peter_budo
0
273
Member Avatar for Hakoo

@Hakoo, Have a look at this [URL="http://stackoverflow.com/questions/4835044/error-launching-first-test-application-android-packaging-problem"]thread.[/URL]

Member Avatar for Hakoo
0
131
Member Avatar for chabo

Have a look at this thread - [URL="http://www.daniweb.com/software-development/csharp/threads/341003/1448317#post1448317"]Automatic Scaling in Windows Forms and Windows User Experience Interaction Guidelines[/URL]

Member Avatar for kvprajapati
0
72
Member Avatar for mittal.nikhilk

Welcome. Please verify the [I]used[/I] connection string in an application. From the error description I can say that the location of database file is not resolved.

Member Avatar for kvprajapati
0
105
Member Avatar for khocmedemmua

Depends upon the type of column you may assign value. [code] dataTableObj.Rows[0]["columnName"]=""; //for string column type [/code]

Member Avatar for shiva07
0
158
Member Avatar for vedro-compota

[B][URL="http://support.microsoft.com/kb/311339"]DefaultValue[/URL][/B] attribute does not set the initial value of property. The VS designer will display this value as non-bold (defaultValue) and other values as bold (which are modified), but still you have to set the value of this property.

Member Avatar for shiva07
0
154
Member Avatar for bhagawatshinde

Find suitable [URL="http://www.connectionstrings.com/"]connection[/URL] strings for different database products.

Member Avatar for shiva07
0
279
Member Avatar for rEhSi_123

The .NET framework has classes for making HTTP requests (System.Net namespace) and an open source library - "Html Agility Pack" is available to parsing html.

Member Avatar for rEhSi_123
0
118
Member Avatar for skiabox

Please read [URL="http://tomcat.apache.org/tomcat-7.0-doc/deployer-howto.html"]this[/URL] documentation. (Apache Tomcat). [QUOTE]Summary : In talking about deployment of web applications, the concept of a Context is required to be understood. A Context is what Tomcat calls a web application. In order to configure a Context within Tomcat a Context Descriptor is required. A Context Descriptor …

Member Avatar for skiabox
0
290
Member Avatar for jaskiratj

Have a look at MSDN article - How to: [URL="http://msdn.microsoft.com/en-us/library/ms178426.aspx"]Configure Multiple Site Maps and Site-Map Providers[/URL].

Member Avatar for aspproject
0
81
Member Avatar for sherinpoulose

Take a look at [URL="http://www.4guysfromrolla.com/articles/120705-1.aspx"]tutorials[/URL].

Member Avatar for aspproject
0
135
Member Avatar for CeeGee

I'd suggest - [B]Head First C#[/B] and [B]C# 4.0 in a Nutshell[/B], are very good books.

Member Avatar for kvprajapati
0
182
Member Avatar for moshe12007

You need to use UPDATE statement to update rows. [code] sql="update BooksCatalog set BorrorState='good' WHERE BookID = '" + TB[2].Text + "'"; [/code]

Member Avatar for kvprajapati
0
111
Member Avatar for ViRiPuFF

Links: 1. [url]http://www.daniweb.com/web-development/aspnet/threads/313786[/url] 2. [url]http://www.daniweb.com/web-development/aspnet/threads/252778[/url]

Member Avatar for ViRiPuFF
0
85
Member Avatar for KushMishra

[code] Label UserIDl = (Label)row.Cells[0].FindControl("UserID"); TextBox Namet = (TextBox)row.Cells[1].FindControl("EditNamet"); [/code]

Member Avatar for showet
0
232
Member Avatar for ejazmusavi

[URL="http://msdn.microsoft.com/en-us/library/ms165647(SQL.90).aspx"]Here[/URL] is MSDN article on[B] Enabling Network Access to SQL Server Express[/B].

Member Avatar for kvprajapati
0
104

The End.