15,669,304 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 Python questions
View Javascript questions
View C++ 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 H.AL (Top 26 by date)
H.AL
10-Aug-17 11:38am
View
getConnection in java is the Connection.Open in c#;
H.AL
7-Jun-17 10:20am
View
then why the same code is running with SOAP service?
H.AL
5-Apr-17 5:01am
View
you saved my day, Thank you
H.AL
16-Mar-17 6:34am
View
You saved my life by telling me about the js global Variable, thank you very much !
But I am still curios to know how to do the above, if someone can tell me ...
H.AL
16-Mar-17 6:21am
View
- txtPhoneNumber[0].onkeydown = function(){alert(1);} is not working
- I will try to search for global js field and revert back ...
H.AL
16-Mar-17 6:07am
View
I think there is something incorrect by making this because even the alert is not working here
txtPhoneNumber.on('keydown', function (e) { alert("test"); return false; });
and keyboard is working while false is returned
H.AL
16-Mar-17 5:59am
View
I can't because I have to implement this function in .js file , so I can't get country there
H.AL
15-Mar-17 1:44am
View
Thank you very much, what a stupid mistake ...
H.AL
14-Mar-17 10:13am
View
It seems it works on visual 2015 but not on visual 2010, any suggestions?
H.AL
7-Mar-17 7:55am
View
Thank you for your answer, but no errors... I solved by publishing my doc file on a public server, the issue is that docs.google.com cannot read a file from local file server.
H.AL
4-Jan-17 4:35am
View
And how can I get returned data as Json? If I add contentType: "multipart/form-data", and dataType: "json" and data: fileData an error "OK" is returned . What's happening here?
H.AL
4-Jan-17 4:09am
View
I did not understand What you mean, can you give me an example please?
H.AL
20-Dec-16 8:36am
View
can you give me some links?
H.AL
16-Dec-16 7:43am
View
I found it now thanks :)
H.AL
16-Dec-16 5:35am
View
Why it didn't throw any error? Should I wait for a while to see the error? + if it was a deadlock, then why am I facing the same issue when claimId was set to 2204150 and method was called from classes where it used to work normally when claimId was not filled as 2204150 inside MyFunct?
H.AL
16-Dec-16 5:08am
View
How can I know from where they got this control? Could it a modified AjaxDataControl Dll?
H.AL
16-Dec-16 5:07am
View
I can see some libraries in the Bin folder concerning AjaxDataControls and AjaxControlToolkit. Actually this project was built since 2010 and I thought that AjaxData:GridView could be something like asp:GridView. How can I figure out how they hava create it?
H.AL
17-Oct-16 2:08am
View
Updated
H.AL
17-Oct-16 2:07am
View
Deleted
It is not updating correctly, anyway this is the web.config:
H.AL
7-Oct-16 1:39am
View
Solved there was a problem in onesignal
H.AL
4-Oct-16 1:46am
View
Dear,
thank you for your declaration, I was wondering how I can create a new log.xml file monthly for my webservice to catch data before being manipulated in our database. As we have a large amount of data and users, we need to create this file monthly to avoid issues of logging with big data. My question was: I have created a method to do all this but I don't want to implement it as a webmethod as it it is not used by clients, so where I have to place it? You suggested to put it wherever I am using logging, but I don't want to decelerate users work, isn't there any other way that automatically detects the first day of month and creates a new xml file? Below is my method:
Public Function CreateFile()
Dim firstDateNextMonth As Date = DateSerial(Date.Today.Year, Date.Today.Month + 1, 1) ' first day of next month
If Date.Now >= firstDateNextMonth Then
Dim Logfile = HttpContext.Current.Server.MapPath("~/Bin/log.xml") ' current log file name
Dim d = DateAdd("M", -1, Date.Now) ' getting the date of previous month
Dim fileRenamed = "log_" & d.ToString("MM") & ".xml" ' current file new name
If File.Exists(Logfile) Then
My.Computer.FileSystem.RenameFile(Logfile, fileRenamed) ' renaming current file
End If
Dim writer As New XmlTextWriter(Logfile, System.Text.Encoding.UTF8) ' creating new log.xml file
writer.WriteStartDocument(True)
writer.WriteStartElement("SUBMIT")
writer.WriteEndElement()
writer.WriteEndDocument()
writer.Close()
End If
End Function
H.AL
3-Oct-16 12:43pm
View
ok I got it thank you
H.AL
20-Sep-16 5:38am
View
I am convinced now, it seems there is a problem with blobs, because even online converters are not accepting them
H.AL
20-Sep-16 5:12am
View
can you try to implement your converted image in img tag ?
H.AL
20-Sep-16 5:03am
View
1- I tried an online converter from base64 to image and it did not work
2- I tried to change image format gif to jpg and png and it did not work
3- I tried to inspect element in the page itself I got the img with the src filled correctly, but image not displayed.
4- I implemented another src of an image converted online : it works normally
5- Blobs are filled in database by Oracle team
So shouldn't be a problem of conversion of large data? I know that your method is returning values of length, but mine too.
H.AL
20-Sep-16 4:42am
View
I know it is a problem with the conversion, what is the best solution to resolve this problem? Note that in my code byteArr.length is equal to imageBase64.length
Show More