- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
23 Posted Topics
Hi All, Suggst me which is the Best Tool to start the E-Commerce Site and easy to use. Thank you. | |
Re: ALTER TABLE Persons ADD CONSTRAINT pk_PersonID PRIMARY KEY (P_Id,LastName) | |
What are benefits of 301 & 302 redirection in SEO? How does this help out.? | |
Re: Please find the [steps](https://www.godaddy.com/help/download-your-webmatrix-publish-profile-web-deploy-9058) to deploy. | |
Re: There is no easy way to be an programmer. You need to have some basic knowledge of programming then you will be an creative.. | |
Re: Are you trying to Login or is it an registration/sign up code.? If you are trying for login then you need to use select query rather than insert. | |
Re: Try This, string strConnString = ConfigurationManager.ConnectionStrings["constr"].ConnectionString; using (SqlConnection con = new SqlConnection(strConnString)) { using (SqlCommand cmd = new SqlCommand()) { cmd.CommandText = "select top 10 * from Customers"; cmd.Connection = con; con.Open(); GridView1.DataSource = cmd.ExecuteReader(); GridView1.DataBind(); con.Close(); } } | |
Re: DropdownList should be inside UpdatePanel. Then the code will work.. And Trigger is also not necessary. | |
Re: Try this X = dataGridView1[Column,Row].Value; | |
Re: You can upload the image directly to the database too. Aspx Page <asp:FileUpload ID=FileUpload1 runat=server ></asp:FileUpload> <asp:Button ID="btnUpload" runat="server" Text="Upload" OnClick="btnUpload_Click" ></asp:Button> <br /> <asp:Label ID="lblMessage" runat="server" Text="" Font-Names = "Arial"></asp:Label> VB.Net Code Protected Sub btnUpload_Click(ByVal sender As Object, ByVal e As EventArgs) ' Read the file and convert it … | |
Re: SQL Server 2005 (the release version and service packs) and earlier versions of SQL Server are not supported on Windows Server 2012 R2, Windows Server 2012, Windows 8.1, or Windows 8. | |
Re: need to add a machinekey in webconfig [ASP.NET machineKey Generator](http://www.codeproject.com/Articles/16645/ASP-NET-machineKey-Generator) | |
Re: Check this out. [Read](http://www.databasejournal.com/features/mssql/filestream-and-filetable-in-sql-server-2012.html) | |
Re: Try out this [freelance](https://www.freelancer.in/), it might help you get the projects. | |
Re: string[] filePaths = Directory.GetFiles(Server.MapPath("~/Images/")); List<ListItem> files = new List<ListItem>(); foreach (string filePath in filePaths) { string fileName = Path.GetFileName(filePath); files.Add(new ListItem(fileName, "~/Images/" + fileName)); } GridView1.DataSource = files; GridView1.DataBind(); For more info [click here](http://www.aspsnippets.com/Articles/Upload-images-to-folder-and-display-uploaded-images-in-ASPNet-GridView-using-C-and-VBNet.aspx) | |
Re: The above code for filling the dropdownlist is correct. Are you binding the dropdownlist in the OnRowDataBound of Gridview? In OnRowDataBound before if (e.Row.RowType == DataControlRowType.DataRow) //Find the DropDownList in the Row DropDownList ddlCountries = (e.Row.FindControl("ddldepartment") as DropDownList); //continued by your code } [Check this out](http://www.aspsnippets.com/Articles/How-to-populate-DropDownList-in-GridView-in-ASPNet.aspx) for further details. | |
Hi All, What do TRACE means.? and how does it helps in VB.Net. Please help Thanks in advance. | |
Re: First place the import statements at the top of the form or code module you are working in Imports Excel = Microsoft.Office.Interop.Excel Imports Microsoft.Office Public Sub OpenExcelDemo(ByVal FileName As String, ByVal SheetName As String) If IO.File.Exists(FileName) Then Dim Proceed As Boolean = False Dim xlApp As Excel.Application = Nothing Dim … | |
Hi, Which programming language is better PHP or ASP.Net Thanks. ![]() | |
Hi All, I want the query to take the sum of individual rows. It can in MSSQL Query or Mysql Query. Please help.. Thanks in Advance. | |
HI All, I am a beginner in Data Types and i came up to double so would someone explain what double actually do? Thanks |
The End.