Click here to Skip to main content
15,885,910 members
Everything / Website

Website

website

Great Reads

by Don Hoang
This post describes implementing ASP.NET Editable Gridview using Bootstrap 4
by Eduardo Mozart de Oliveira
Any project can use a cut-down version of the platform to provide professional, easy-to-use, and searchable documentation
by Anton Angelov
A detailed overview with examples how to utilize the Observer Design Pattern in automated tests to create an extendable test execution.
by Maxim Komlev
Task Scheduler JavaScript library

Latest Articles

by NewPast
PHP contact-us script runs without modification. It detects the domain and emails all the contact-us form-data
by Evoluteur
A web color picker which looks like the one in Microsoft Office 2010
by Florian Rappl
Microfrontends present the latest addition to the decoupling efforts of architects - are they worth the struggle?
by Jeremy Likness
Generate a thumbnail for your Hugo posts on the fly, then create a custom short code that uses thumbnails and page data like title and description to embed a post preview to interlink documents.

All Articles

Sort by Score

Website 

16 Apr 2013 by Sergey Alexandrovich Kryukov
If your XML file is small enough to keep all the data in memory, this is a simple easy way to implement a kind of a database; and you would enjoy the huge benefits of purely object-oriented database, no mapping code. If this is not the case, however, such approach would be very awkward, and I...
30 Jul 2019 by Don Hoang
This post describes implementing ASP.NET Editable Gridview using Bootstrap 4
30 Aug 2018 by Eduardo Mozart de Oliveira
Any project can use a cut-down version of the platform to provide professional, easy-to-use, and searchable documentation
1 Jul 2015 by Anton Angelov
A detailed overview with examples how to utilize the Observer Design Pattern in automated tests to create an extendable test execution.
26 Jun 2017 by Anton Angelov
Find how to create more refined and more maintainable page objects in WebDriver. These page objects will follow the Single Responsibility Principle more closely.
16 Jun 2012 by db7uk
This really (and I mean really!) depends on the actual requirements from the client. I am very bias towards Microsoft but can sometimes be very pricey for newcomers.Here are my thoughts.1) Which language. Microsoft have invested subsequent amounts of money in their ASP.NET platform....
17 Jun 2012 by OriginalGriff
"Don't encrypt passwords" is the simple answer.See here: Password Storage: How to do it.[^]
21 Sep 2012 by Zoltán Zörgő
You can not do that with pure html/http - since if it has an url, any http client can fetch it, not only a browser. But one can also disable javascript, intercept http traffic and so on.The only option (not totally secure trough) is to use a custom browser plugin or applet (silverlight,...
19 Sep 2013 by Sergey Alexandrovich Kryukov
It's hard to find the functionality you describe on odesk.com. I think what you are trying to get is the tooltip. Here is one of the possible implementations (jQuery):http://jqueryui.com/tooltip/[^].If you need to learn jQuery (highly recommended), please...
27 Jun 2016 by Maciej Los
Here: Microsoft Products Accepting Bugs and Suggestions | Microsoft Connect[^]Here is a guidelines: Bug Reporting Guidelines | Microsoft Connect[^]
21 Sep 2012 by Sergey Alexandrovich Kryukov
There is no way. You will understand it yourself, if you get yourself some time to learn how Web works. This is a pure client-server; and everything is done by the HTTP server in response to HTTP requests. At the moment a user can see some picture, it's already on the client side. The user...
6 Nov 2012 by SoumenBanerjee
Get page HTML using System.Net.WebClient class of .NET as well as striping HTML using Regex and export a list into Excel or XML.
27 Jun 2015 by Sergey Alexandrovich Kryukov
I don't think you are starting with right approach or attitude.One can improve one's design skills. This is not easy but possible. Moreover, one can grow one's patience. You are doing different thing: you are not just admitting your poor patience, which would be a good first step, you are...
8 Jul 2015 by Sergey Alexandrovich Kryukov
In addition to Solution 1:Most likely, what you wanted to achieve was referencing your "bg-body.png" relative to the root directory set up for your site. Right syntax for that would be "~/images/bg-body.png".The path "/images/bg-body.png" is something different; this is a path relative...
15 Sep 2015 by ZurdoDev
Use the dollar sign instead of the word jQuery. And remove the dollar sign inside your function declaration.
20 Sep 2015 by PIEBALDconsult
Ask your instructors, classmates, friends, and family for suggestions.Then put them on a dart board, close your eyes, and throw.
26 Feb 2016 by Max R McCarty
How are you storing that sensitive application data and should you be?
31 Jan 2017 by Suvendu Shekhar Giri
For URL Encode you can use URLEncode()Reference: HttpServerUtility.UrlEncode Method (String) (System.Web)[^]But as your requirement is to encode just a piece of plain text, the better option looks to encrypt rather than encoding as that can result in a large text and can be decoded by...
16 Apr 2017 by Anton Angelov
Find how to create more refined and more maintainable page objects in WebDriver. These page objects will follow more closely the Single Responsibility Principle.
4 Jul 2017 by Jochen Arndt
So the code works and the connection is there but you just don't get what you want. That is because you are communicating with the server on the raw HTTP level. The received data will begin with an HTTP response that you have to analyse. If you don't want to do that yourself you have to use a...
15 Jun 2018 by ZurdoDev
Based on your comment, your ratio is way off. You can take a 200 x 100 image and put it into a 100 x 50 slot because the ratio is still the same so it will look good. But taking a 2213 x 519 (4.26 ratio) and stretching it to 920 x 174 (5.29 ratio) clearly is going to make the image blurry.
31 May 2020 by phil.o
The href attribute of the a tag is what should hold the address of your homepage. Plus, you didn't close the img tag properly:
5 Feb 2022 by Patrice T
$oldname = ['tmp_name']; $newname = $_SESSION['username']; '.' + $imageFileType // What about a ';' at the end of this line ? if (rename($oldname, $newname)) { $message = sprintf( '', $oldname, $newname ); } else { $message = sprintf( ...
27 Mar 2024 by Richard MacCutchan
Take a look at Tutorial: Create C# ASP.NET Core web application - Visual Studio (Windows) | Microsoft Learn[^]
4 Jun 2012 by taha bahraminezhad Jooneghani
there isn't any direct solution for this, but you can use a web service in your web application that get the web.config connection strings.namespace test{ /// /// Summary description for WebService1 /// [WebService(Namespace =...
12 Jun 2012 by Tim Corey
I believe you are looking for vworker.com:http://www.vworker.com/[^]This used to be called Rent-A-Coder.
17 Jun 2012 by Muthu Nadar
Before saving your password to database, use some of the encryption algorithm.And while retrieving the password back use decryption algorithm. Save your key on some other place.Refer http://nadarmuthukumar.blogspot.in/2012/04/encryption-decryption.html[^] for encryption decryption.
18 Jun 2012 by Prasad_Kulkarni
Please refer:Using VBScript and JScript on a Web Page[^]How to Create a Simple VBScript Web Page[^]
25 Jun 2012 by ssd_coolguy
try below link...it might be helpfullConfigure SSL on your website
22 Jul 2012 by woutercx
Look at this codeproject article:Web.config File - ASP.NET[^]
22 Jul 2012 by OriginalGriff
Google is your friend: Be nice and visit him often. He can answer questions a lot more quickly than posting them here...A very quick search gave 6 million hits: https://www.google.co.uk/search?sugexp=chrome,mod=16&sourceid=chrome&ie=UTF-8&q=web.config+file[^]The first page is full of...
5 Oct 2012 by Sandeep Mewara
Here, ASP.NET MVC website itself shares information about various emulators: ASP.NET MVC 4 Mobile Features [^]It says:You will also need a mobile browser emulator. Any of the following will work:- Windows 7 Phone Emulator. (This is the emulator that's used in most of the screen shots in...
11 Jan 2013 by Sergey Alexandrovich Kryukov
This is not about HTML at all. Apparently, as this is a Web site, you have to follow HTTP protocol. You need to send HTTP request in exact same way you browser does, most likely using "POST" request method. This is not a problem, because you can always see what a Web page does (what is it, an...
15 Feb 2013 by Abhishek Pant
have a look at this also-free solution:wix free website builder[^] that has predesigned templates with No coding and Google friendly.itsreview and specifiation[^]paid soulution:Ewisoft Website Builder [^].
4 Sep 2013 by me.ajaykumar
this will help in redirecting to new
11 Oct 2013 by ASP.NET Community
If it is required to add a facility on the webpage that users can click a button on the website and it will open up bookmark option. Following is
11 Oct 2013 by ASP.NET Community
suppose your url ishttp://www.xyz.com/defaultand some hacker try for hacking the website so type some script text on url
14 Jan 2014 by Nanda Kumar Chintam
This tip explains how to perform unit testing for business logic written in App_code for a website project.
29 Jan 2014 by Tadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)
I do a research and following is what I have found.Microsoft Sync FrameworkBuilding online/offline synchronization capabilities with the Microsoft Sync Framework[^]HTML 5Offline Web applications[^]Build an HTML5 Offline Application with Application Cache, Web Storage and ASP.NET...
13 Mar 2014 by Aravindba
Hai what is meant by "unique session" ? if "Object reference not found" means some values is empty or cant retrieve from database or cant get value from session or anythin.....Pls post ur code and mention which line u get error,If u ask any question try to post ur what u did,simply...
8 Apr 2014 by CHill60
Please post this on the "Sugs and Bugs" forum ... http://www.codeproject.com/suggestions.aspx[^]
27 Nov 2016 by Herbisaurus
I am trying to open a website with my new VS 2013 but I am getting this error message:Filename: \\?\UNC\[ ... a local path here ...]\My Documents\IISExpress\config\applicationHost.configLine number: 1Error: Configuration file is not well-formed XMLI noticed that in that folder I...
8 Mar 2015 by Joezer BH
Ahmm, For some reason your applicationHost.config (and not configurationhost.config as you stated after the error quote) is empty and it shouln't be.What you had best do is simply remove it and run the IISExpress.exe that is probably in this path: "c:\Program Files\IIS...
23 Jul 2015 by CPallini
Then make HTTP custom request. See "SIM900 GPRS/GSM Shield"[^].
9 Aug 2015 by OriginalGriff
I'm not saying your numbers are wrong, but...Those are big numbers. 10,000,000 users a month is 13,000 per hour, 24 hours a day. This site has 11,000,000 members of which only 65,276 are "Online" - i.e. still have current Sessions - at this moment. Very, very little of the site uses HTTPS,...
11 Sep 2015 by ZurdoDev
Sure. Search google for jquery marquee examples. I personally think it is bad design but if you need it, there are some responsive ones. However, it will also depend on what else is going on plus the user's computer. It's probably better if you take a different approach.
22 Sep 2015 by Adaying
As just a tip of an iceberg, see here some ideas:https://www.quora.com/What-are-some-innovative-final-year-project-ideas-for-an-IT-CS-student[^]But the question is why do you think that anyone can advise you what to choose for your final project... I mean the choice should be clearly...
22 Sep 2015 by F-ES Sitecore
You have two issues...one you are not coding defensively so are prone to these errors. There is no guarantee that your session variables exist so you have to check first. Secondly it looks like you might be storing ints as strings, which you shouldn't. To store an int...
17 Oct 2015 by OriginalGriff
Use only HTML.It'll be a dull site though - and about 15 years out of date...Try looking here: http://www.w3schools.com/[^] or here: https://wordpress.org/[^]
27 Nov 2015 by Richard Deeming
Storing the username and password in a cookie is an EXTREMELY bad idea.The cookie is sent with every request to the site. Anyone on the network will be able to intercept the request and read the user's credentials.Since you haven't marked the cookie as "HTTP-only", an attacker who...
1 Dec 2015 by ZurdoDev
You likely can't. You would have to contact steam to see if they have an api you can call. The only other option is to download the page via c# (many examples online) and then parse the html to find what you want. I'd suggest contacting steam first.
1 Dec 2015 by phil.o
In complement to RyanDev's solution, here's where you should have a look at:Steam Web API[^]
23 Jan 2016 by Kornfeld Eliyahu Peter
There is no one-size-for-all solution here...You preferences are may be totally wrong for me and the other way around...and what was the ultimate best yesterday maybe wrong today for the very same company/team...What you have to consider is:1. Time2. Money2. Existing knowledge of the...
10 Feb 2016 by Richard MacCutchan
That is quite a big ask if you know nothing about programming. You will need to learn one of the .NET languages (C# or VB.NET) which is not a 1-day task. You will also need to learn HTML, Javascript (or PHP) and the fundamentals of how websites operate. The chances of being able to complete this...
9 May 2016 by Suvendu Shekhar Giri
Why don't you search in Google or Bing prior to post the question here?If you have searched google, anything you have tried implementing?Why exactly you want to hide the address bar?You can do this programatically, by opening a new window (at least for IE).Please check following...
14 May 2016 by Kornfeld Eliyahu Peter
If you can not touch the code (you have not code as I understood from comments), you can not do nothing...Even for the most basic version of auto complete, you have to edit the HTML code (attribute of the input element[^])... and for more sophisticated completition, you will need code on the...
20 May 2016 by CHill60
This was answered on your previous post **Not sure what programming language should I choose? **[^] and you accepted the answer!As I said there - use the reviews from Amazon to judge what people think of the books available.I also gave you a list of free websites to choose from and...
28 Jul 2016 by Suvendu Shekhar Giri
Just put two hyperlinks- 1 2Please check following tutorial for further infromation-HTML Links[^]Hope, it helps :)
30 Aug 2016 by dinesh_redhawk
Hello All,I have to scan a QR code using webcam on a Asp.net web page.Currently i have used Zxing and AForge.Net dlls and made a QR reader on a Winform application. But iam not able to do that in a Asp.net webpage.The problem area here is to capture the video frame in bitmap from the...
30 Aug 2016 by Xiao Ling
You can download the sample code:[ASP.NET-C#] Read barcode from webcam[^]Steps to implement the solution1. Use HTML5 to open a webcam in your web browser.2. Display the webcam preview on a canvas.3. Send the canvas data (base64 string) to the server-side that built in ASP.NET.4....
30 Jan 2017 by Peter Leow
Check these out: 1. Clean up your bad backlinks • Yoast[^]2. How to Get Rid of Unwanted Backlinks | Search Engine Watch[^]
7 Jul 2017 by David_Wimbley
Since you mention this is for self development and learning new skills, my suggestion would be to break down your "problem" into smaller pieces are start tackling your desired functionality as separate "issues". This way you'll start with a basis of web development and move up towards...
11 Jul 2017 by asutreja
Dragging List items within DevExpress MVC FormLayout control to re-arrange/order by end users
9 Jul 2017 by Kornfeld Eliyahu Peter
AWS has a website (https://aws.amazon.com/) with megatons of documentations... Read the bit concerns you... IIRC you do not upload your project ,but - after setting up the environment - your are RDP into the virtual machine you created and install the published version of your project...
20 Aug 2017 by Yaseer Mumtaz
MEAN Stack, Development Environment Setup, Expressjs APIs Development & Testing
29 Sep 2017 by adityasahver
In this tip, we will learn how to enable the Certificates in the Azure Web Sites
8 Feb 2018 by David_Wimbley
So to recap, you are non-technical yet you want us to explain to a non-technical person how they can go about achieving a very high level spec'd application that requires in depth technical knowledge. You need to go to freelancer.com and hire someone as to teach you how to build what you are...
11 Oct 2018 by Dave Kreskowiak
The short answer is, you can't. You can NOT use Office Interop in an ASP.NET app. All of that code runs entirely server-side, never on the client. Your server-side code will never have any access to anything on the client. All your ASP.NET code can do is generate HTML and script files and send...
29 Oct 2018 by nkphuc700
I found the solution for this question. Just return the correct ContentType for docx, and the issue will be solved for iPhone and iPad Register the 2007 Office system file format MIME types on servers | Microsoft Docs[^]
6 Nov 2018 by W.G.C.
If possible, use System.DirectoryServices.AccountManagement instead. Dim LocalMachineContext As DirectoryServices.AccountManagement.PrincipalContext Dim LocalGroupPrincipal As DirectoryServices.AccountManagement.GroupPrincipal Dim DomainContext As...
22 Jan 2020 by MadMyche
You would need to setup DNS; which will link the Domain Name to the IP Address References: Change my IP address | Domains - GoDaddy Help CA[^] Add an A record | Domains - GoDaddy Help CA[^]">^]
9 Mar 2020 by Richard MacCutchan
automatically copy to the other database - Google Search[^]
9 Mar 2020 by NP64
Set up Replication between two servers. Check this for more information about different type of replication - Types of Replication Bidirectional Replication help you to transfer data between two servers.
11 Mar 2020 by Richard MacCutchan
ASP.NET | Open-source web framework for .NET[^]. You will also need to know HTML, CSS and either C# or VB.NET.
25 Mar 2020 by Richard MacCutchan
You cannot just copy random files and expect them to work. You need to build an actual web application and install it correctly. There are many samples that you can find on the internet using ASP.NET, PHP etc.
25 Mar 2020 by OriginalGriff
Start with one file: ...
7 May 2020 by RickZeeland
Maybe this one: GitHub - TomaszRewak/Anti-Procrastinator: Simple app that updates Windows hosts file with unwanted websites.[^]
25 Jun 2020 by OriginalGriff
No, it's not possible for "any browser" - it my be possible for some, not extremely non-trivial, and likely to fail whenever the browser updates, which is "very often" with many of them. And that';s a good thing, because it's the kind of thing...
5 Feb 2022 by Patrice T
Quote: Syntax error, unexpected '}' A little beautification show the problem
4 Feb 2022 by OriginalGriff
See here: How to Make a Redirect in PHP[^]
5 Feb 2022 by Richard MacCutchan
Your code is badly formed again:
5 Apr 2022 by Richard Deeming
Don't post this under "quick answers". The volunteers who answer questions here have no access to the CodeProject server infrastructure, and cannot help you with problems downloading article files. Post your problem in the Bugs and...
10 Jul 2023 by Andre Oosthuizen
The 'slideshow' is called a carousel. There are tons of examples if you search for Bootstrap 5 Carousel - Google bootstrap 5 carousel[^] The first one that popped up gives you multiple uses and sample code - Carousel - With controls[^] is the...
27 Mar 2024 by Richard Deeming
"Website projects", which have no project file, have been deprecated for over a decade now. You can still open existing ones, but in order to create a new one, you need to install the "additional project templates": Can't find the 'create new...
4 Jun 2012 by bbirajdar
Hi ExpertsI have a rather research type of question for which I googled a lot but could not find any solution. May be anybody here can throw a some light on this.In a website solution with app.config in a class library project and web.config in website project, is it possible that the...
12 Jun 2012 by Frank R. Haugen
I'm looking for sites that let people post what they need developed/programmed/designed and where developers can bid on it.I was referred to some sites a few years ago but having a Teflon-brain, I've forgot the sites names.any help would be appreciated!PS: I am a developer not...
16 Jun 2012 by Member 9129971
i am a software engineering student and want to learn web development ,,,so that i can make a complete website with dynamic webpages...one company has offered me to create website for them but i have no idea where to start..any one plz guide me about1)which lang. or plateform is best for...
17 Jun 2012 by se.nishant
I am New asp.net Developer, I want some Information regarding how we can encrypt before storing into database and Decrypt data after retrieving.I want to save passwords in database, How to make them unreadable.
18 Jun 2012 by Farhan Ghumra
you should start developing with HTML5 + JavaScript[^], VBScript is now obsoleted.
25 Jun 2012 by Mukesh_Chauhan
How to convert http website to https(SSL) website?
26 Jun 2012 by Tim Corey
My advice is to stay away from "easy" solutions that are free if you are dealing with online purchasing. If you do go the online payment route, look into a full solution. Something like this might work:http://www.expand2web.com/smallbiz-theme/[^]However, if you are just looking for a...
19 Jul 2012 by Code Master38
I have been working on a program similar to the Aircrack-ng suite, but miy program uses rainbow tables to audit the 4-way WPA\WPA2 handshake quickly. I'm about done with my app and plan on releasing it soon.So my question is this, is their a free website builder that will give you a free...
12 Sep 2012 by jamiebones
Please i get this error when i hosted my asp website to a hosting company.The website runs locally on my local machine but on the internet it brings this error.Configuration ErrorDescription: An error occurred during the processing of a configuration file required to service this...
11 Sep 2012 by _Amy
Hi,You are referring any connection string in in your pages?Because there is no any connection string in your configuration file and your application is trying to connect to the databse with the connection string LocalSqlServer (Which is not there actually). So, you need to add this...
12 Sep 2012 by jamiebones
All you need to do is to add the attribute to the profile provider ,role manager provider and the membership provider.Doing this overides the default property which inherits from the machine.config file of the machine. ...
5 Oct 2012 by masterprogrammertech
I am developing a mobile website using asp.net mvc 4 for the first time. A few pages are already developed. Now I need to test this website. Can please somebody let me know which is the best simulator? If something is available such that I can test iphone, blackberry, htc, Samsung android,...
6 Oct 2012 by masterprogrammertech
When I test my mobile website in various emulators I see that the design does not appear correctly in all devices. If i adjust for one then the other goes bad. I am developing a mobile website for the first time. I need to fit my design in devices of all resolutions. For example if I have a...
6 Oct 2012 by Sandip.Nascar
Here are some links which will give you a fair idea to...
23 Oct 2012 by massab
Hi ,I have a project done in asp.net mvc 3.I need to integrate with a normal asp.net website.for eg admin side done in asp.net and other main side done in asp.net mvc3.How can we integrate both?Plz Help me out.I find many links for adding mvc to asp.net web form.but i need vice versa