Click here to Skip to main content
Page 1 of 1
Page Size: 10 · 25 · 50


Author filtered by: Balimusi [x]
Answer 13 May 2013   license: CPOL
You don't even need a function. Since you are passing comma separated values, you will need to make a dynamic query. For instance, declare a SQL variable, then set that variable to your select statement. After that execute that variable.DECLARE @SQL VARCHAR(1000)SET @SQL = 'SELECT...
C#
Forum Message 12 May 2013  
It's emailed to you (haidryhatim@gmail.com). Let me know if you don't receive it.
Answer 12 May 2013   license: CPOL
Input (File) is an HTML control, so you will need to run it as a server control and then validate it on the code-behind. If you don't want to set it a server control, you can validate it using JavaScript/jQuery in the client-side. For instance, var fileUpload = $("*[id$='fileUpload...
Forum Message 12 May 2013  
Can it be a firewall within your network that causes the issue with a zip file download? I haven't heard anyone else is having this problem. Btw, the source code was uploaded by the CodeProject editor
Article 9 May 2013   license: CPOL
In this article, we will take an existing SOAP-based service and convert it over to a more RESTful design.
Forum Message 9 May 2013  
If that's the case, the problem maybe between the keyboard and the chair, :-D. Anyhow, just try it again, you will get it to work eventually.
Forum Message 9 May 2013  
Try to update the Service Reference and see if it's working. Otherwise, delete it and re-add it again. And then instantiate it from the HomeController class - ServiceReference1.ProductS
Article 8 May 2013   license: CPOL
WCF 4.5 Services Development using Entity Framework and MVC 4 front-end
Answer 7 May 2013   license: CPOL
Here it is the solution. I even tested for you. using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ReadFromFile{ class Program { static void Main(string[] args) { //...
C#
Answer 7 May 2013   license: CPOL
Use XmlReader class. This class provides the fastest and least memory-consuming means to read and parse XML data by providing forward-only, non-caching access to an XML data stream. If random access is required when accessing XML, use the XmlDocument class.
Re: nice article by Balimusi
Forum Message 7 May 2013  
Thank you. The source code is uploaded on DropBox. Please see my note above.
Forum Message 7 May 2013  
Thank you, please see my notes above regarding the source code.
Download Source Code by Balimusi
Forum Message 7 May 2013  
Hi All, Code Project allows to upload file only up to 5 MB, and I was not able to include the source code with this article. So, I zipped up the source code and placed it on my dropbox. It includes
Forum Message 7 May 2013  
Thank you Sean. We can only upload file up to 1 MB, but my source code is about 15 MB. How can I do that?
Answer 3 May 2013   license: CPOL
GridView1.DataSource = (DataTable)Session("DataFromSession");GridView1.DataBind();
Answer 3 May 2013   license: CPOL
Create a parameterized query or stored procedure that returns the Person information based on the PersonID passed from your front-end. Execute this query from your code-behind (the Search button even) passing in the value entered from the txtID textbox. Return the result, and then assign that...
Answer 3 May 2013   license: CPOL
You need to have the GroupID before you can insert it to the Person table. Right now, you are doing everything in one transaction, which causes the problem. The GroupID is an Identity field (auto-incremented), so you need to to insert that first, return it to the front-end, and use that ID when...
Answer 1 May 2013   license: CPOL
Add web reference in your client application, and then consume the service.For instance, assume that your web reference is called MyWebService and your service you want to invoke is DataServiceClient, as seen below. You can return the result in your preference container, in this example, I...
Answer 1 May 2013   license: CPOL
It's difficult to tell from the exception you listed. You need to set the includeExceptionDetailInFaults to True in the app.config, to see more detail exception and go from there. ..........
Answer 1 May 2013   license: CPOL
Can you include the btnCmmnt_Click event, so we can see what's going on with your code?
Answer 1 May 2013   license: CPOL
You can concatenate rows in a table using FOR XML PATH() function. Check this out: http://sqlandme.com/2011/04/27/tsql-concatenate-rows-using-for-xml-path/
SQL
Answer 30 Apr 2013   license: CPOL
This link might help you, http://go4answers.webhost4life.com/Example/submitting-infopath-data-database-20961.aspx.
Answer 30 Apr 2013   license: CPOL
WCF might be a good option for you. You can take advantage of the attributes that WS-Security provides – it describes how to handle security issues within the SOAP messages. WS-Security assigns the signature and encryption information as well as the security tokens to the SOAP messages. Besides...

Page 1 of 1


Advertise | Privacy | Mobile
Web02 | 2.6.130513.1 | Last Updated 15 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid