5,346 Posted Topics
Re: Please read this [URL="http://www.asp.net/hosting/tutorials/deploying-your-site-using-visual-studio-cs"]post[/URL]. | |
Re: Have a look at - [url]http://www.daniweb.com/software-development/vbnet/threads/371857/1600381#post1600381[/url] | |
Re: 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). | |
Re: Please read this [URL="http://stackoverflow.com/questions/1355292/friendly-name-from-google-using-openid"]thread[/URL]. | |
Re: Please take a look at this [URL="http://csharp.net-informations.com/crystal-reports/csharp-crystal-merge-module.htm"]post[/URL]. | |
Re: Did you receive an error message? Which exception is thrown? | |
Re: 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] | |
| |
Re: Don't use #2 and #3 line statements. Use Session.Abandon() method. | |
Re: Patterns: [code] string pattern1 = @"\(.*w*\)"; string pattern2= @"\(#\w+\)"; [/code] | |
Re: Do you know ADO.NET? Using ADO.NET classes you may establish database connection and execute queries. | |
Re: Welcome. Please show us your code work first. (Read member rules). | |
Re: 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]'. | |
Re: 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] | |
Re: 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 … | |
Re: You have to qualifying the column names. eg. DatabaseName.TableName.Column_Name. | |
Re: >can i using gridview to create friends list like this? Yes. | |
Re: 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 … | |
Re: 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] | |
Re: @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) | |
Re: 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. | |
Re: Take a look at this [URL="http://stackoverflow.com/questions/4163404/how-to-convert-framework-4-to-3-5"]thread[/URL]. | |
Re: Thread Locked. Do not post the same question multiple [URL="http://www.daniweb.com/forums/faq.php?faq=daniweb_policies"]times[/URL] | |
Re: 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] | |
Re: 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]. | |
Re: 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] | |
Re: 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] | |
Re: Take a look at [URL="http://www.connectionstrings.com/mysql"]connectionStrings.[/URL] | |
Re: Use InnerHtml or InnerText property. [code] Message1.InnerHtml = "text_here"; [/code] | |
Re: Use Visible property to show/hide MonthCalendar control. | |
Re: Welcome. Class diagram includes attributes and methods. Have a look at this [URL="http://en.wikipedia.org/wiki/Class_diagram"]sample.[/URL] | |
Re: [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] | |
Re: 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? | |
Re: @Hakoo, Have a look at this [URL="http://stackoverflow.com/questions/4835044/error-launching-first-test-application-android-packaging-problem"]thread.[/URL] | |
Re: 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] | |
Re: 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. | |
Re: Depends upon the type of column you may assign value. [code] dataTableObj.Rows[0]["columnName"]=""; //for string column type [/code] | |
Re: [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. | |
Re: Find suitable [URL="http://www.connectionstrings.com/"]connection[/URL] strings for different database products. | |
Re: 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. | |
Re: 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 … | |
Re: 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]. | |
Re: Take a look at [URL="http://www.4guysfromrolla.com/articles/120705-1.aspx"]tutorials[/URL]. | |
Re: I'd suggest - [B]Head First C#[/B] and [B]C# 4.0 in a Nutshell[/B], are very good books. | |
Re: You need to use UPDATE statement to update rows. [code] sql="update BooksCatalog set BorrorState='good' WHERE BookID = '" + TB[2].Text + "'"; [/code] | |
Re: 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] | |
Re: [code] Label UserIDl = (Label)row.Cells[0].FindControl("UserID"); TextBox Namet = (TextBox)row.Cells[1].FindControl("EditNamet"); [/code] | |
Re: [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]. |
The End.