15,742,302 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View Javascript questions
View C++ questions
View Python questions
View Java questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
Comments by Alireza_1362 (Top 18 by date)
Alireza_1362
21-Aug-13 2:12am
View
The link that you provided was really helpful, and exactly was what I have been looking for ,thanks a lot for helping me.
Alireza_1362
20-Aug-13 4:38am
View
Thanks for the response ,suppose there is a page.aspx with code in page_load event of this page only , the code is responsible for reading data from SQL after certain amount of time and store it in XML file,I want to execute this page periodically ,for example after 15 minutes ,this page doesn't have any interface just including code behind,how can I do that ?
Alireza_1362
20-Aug-13 3:27am
View
no actually ,I want to do that with asp.net code behind ,suppose I want to send request to my generic handler (.ashx) after certain amount of time (every 15 minutes)and get some information ,how can I do that with server side code.
Alireza_1362
31-May-13 4:04am
View
I found the problem ,so with a little changes should be :
if ($('#feedback_text').val() != '') {
var values = { 'message': $("#feedback_text").val() };
$.ajax({
type: "POST",
url: "test2.aspx/ReceiveFeedback",
data: JSON.stringify(values),
contentType: "application/json; charset=utf-8",
dataType: "json",
processData: false,
success: function (data) {
document.write(data);
}
});
}
Alireza_1362
31-May-13 2:13am
View
Thanks for answering ,after change my code according to your code ,I got this error:
{"Message":"InvalidJSONprimitive:object.","StackTrace"
Alireza_1362
27-May-13 23:35pm
View
Nice talking to you too :) ,Thanks
Alireza_1362
27-May-13 3:35am
View
ok ,thanks anyway for your help.
Alireza_1362
27-May-13 3:17am
View
If I read the Country Column only ,it works perfectly ,but If I add those columns as I mentioned above to select commnad ,it gives me an error that I post it for you
Alireza_1362
27-May-13 3:10am
View
this is an error:
System.Data.OleDb.OleDbException: '' is not a valid name. Make sure that it does not include invalid characters or punctuation and that it is not too long.
Alireza_1362
27-May-13 3:06am
View
Sorry ,I couldn't get you! in that column there are some numbers only ,the format is like this
0.0001 - 0.5000 0.50001-0.1000
------------------ --------------
34.0000 216.000
56.0000 52.000
I'm trying to get data from these columns in select command
Alireza_1362
27-May-13 2:35am
View
yes
Alireza_1362
27-May-13 2:28am
View
Hi again, I mean my column in excel file is something like this :0.0001-0.5000,0.5001-1.0000
,this is column name ,so in select command I should retrieve data in this way:
"SELECT Country ,[0.0001-0.5000],[0.5001-1.0000] FROM [" + SheetName + "$]" ,but it doesn't work ,I can't even change the column name ,because it's client file. so would you help me ,thanks
Alireza_1362
27-May-13 0:52am
View
Thanks for your answer ,One thing is My Column Format is something like this: 0.0001-0.5000 ,how can I mention them in front of select command ,I have tried in several ways but didn't get correct result
Alireza_1362
7-May-13 1:58am
View
I mean ,when I run the web apps ,I trace it in firebug and in console section ,I saw mentioned problems and I don't know what exactly happen when Ajax request calls ,this is simple application that I wrote and there is no complicated code just the code that I put in response to you ,so I guess maybe there is another reason in background which I don't know. That's why I said I think ,Thanks.
Alireza_1362
7-May-13 1:42am
View
I think there is no error in my code ,I guess the problem should be something else
Alireza_1362
7-May-13 1:38am
View
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server">
<div>
<asp:UpdatePanel ID="myupanel" runat="server" UpdateMode="Conditional">
<contenttemplate>
<asp:Label runat="server" Text="Label" ID="lblD">
<asp:Button runat="server" Text="Button" ID="btnc" OnClick="btnclick" />
</div>
</form>
Alireza_1362
29-Mar-13 2:01am
View
Deleted
Thanks for introducing me ,I worked with SlideShow Control before , and it can be the good solution ,but now for some reason I'm working with $.GetJSON() in JQuery and I'm facing with a problem to load array of images ,that's why I'm looking for solution
Alireza_1362
29-Mar-13 1:00am
View
which slidshow control gives me this ability ? If you know the best one ,I would appreciate to introduce me ,thanks
Show More