Click here to Skip to main content
15,892,737 members
Everything / Web Development

Web Development

web_development

Great Reads

by Christoph Buenger
Describes PHP application development with the free Scavix Web Development Framework (Scavix-WDF).
by Kel_
Presents a real-time gauge implementation that can be used for building dashboards
by Evoluteur
A generic Web User Interface for CRUD applications generating all screens at run-time based on external metadata. It comes with sample applications for address book, memo pad, to do list, restaurants list, wine cellar, and database structure documentation that are easily customizable.
by Espen Harlinn
Release the random artist inside you

Latest Articles

by Yahya Mohammed Ammouri
Allowing Hijri and Gregorian date fields to work together on your Dynamic CRM form and updating them simultaneously according to the user entry.
by Evoluteur
A web color picker which looks like the one in Microsoft Office 2010
by Sandeep Mewara
Learn, understand and jumpstart with ReactJS
by MattZand
Learn how to leverage the power of HTML5 audio and video tags

All Articles

Sort by Updated

Web Development 

24 Apr 2010 by #realJSOP
Constrain it in a div. I believe you can set overflow to off, and whatever is displayed outside the dimensions of the div will not be displayed.
1 May 2010 by #realJSOP
Yeah, but you would have to use the WebClient object to do it. You need to request the upload page, parse the response so that the appropriate page control contains your filename, and then post it back. It's not trivial, but it's not hard either.
26 May 2010 by #realJSOP
We can't help you if you don't tell us more than "it's not working".WHAT isn't working? Did you try running the code under the debugger?
20 Jun 2010 by #realJSOP
It looks like you're going to have to find a place to host your domain. Until you do that, you won't be able to display anything anywhere.
19 Jul 2010 by #realJSOP
Your question makes little sense. If you are asking if you can get aweb serive's settings from a database in order to communicate with the web service, yes you can, but only if that database can be accessed without the use of the web service. Typically, a web service can only be accessed...
9 Aug 2010 by #realJSOP
There are many approaches to doing what you need to do. This is where you use that skill you haven't developed yet - analysis. The XML you've provided is simple in its content, and it isn't that hard to work out what you need to do. Beyond that, nobody here is going to actually write the...
28 Aug 2010 by #realJSOP
Why are you using php? Just go with asp.net/ajax/silverlight. That way, you can use just one dev tool for (and debug) everything. Believe me - it'll go a lot smoother.
2 Nov 2010 by #realJSOP
I would start with googling the phrase "using jquery".
27 Nov 2010 by #realJSOP
Googling this phrase - "deploy java servlet" - revelaed 500,000 hits, and the very first one has the title "Introduction to Java Servlets, Developing your first Java Servlet".Seriously dude - this is the internet, any question you might come up with has almost always been asked/answered...
14 Jan 2011 by #realJSOP
Googling "wpf printing" giveds back 348 THOUSAND results. This is one of them:http://www.eggheadcafe.com/tutorials/aspnet/9cbb4841-8677-49e9-a3a8-46031e699b2e/wpf-printing-and-print-pr.aspx[^]Feel free to google it yourself if that link doesn't help you.EDIT===============If you...
20 Jan 2011 by #realJSOP
Have you contacted the people that created the ad rotator component?
9 Feb 2011 by #realJSOP
Hosting a web page (including Silverlight) requires a web server (usually IIS when you're talking about .Net, but Apache can be used as well), even if you're just on a LAN. Clients can't usually change a web site/app so the rest of your question doesn't make any sense.
1 Mar 2011 by #realJSOP
Yes, you already knew the answer. That's not what a web service is for, and it won't do it.
4 Apr 2011 by #realJSOP
What you want to do is called "url rewriting". If you google that phrase, this is the first link among 442,000 returned:http://msdn.microsoft.com/en-us/library/ms972974.aspx[^]EDIT ==============If you're going to 1-vote my answer, tell me WHY. This comment is aimed at whoever voted...
12 Apr 2011 by #realJSOP
1. is codeproject is a database driven site?Yes.2. If codeproject is a database driven site then why its pages are like static pages?The question/votes/comments/solutions are all stored in the database. the page is built dynamically, and I bet they use URL rewriting so that it shows...
14 Apr 2011 by #realJSOP
Wordpress got pwned this week. Someone gained root access. At this point, I'd say WordPress is a no-go until they get their collective sh*t together.
2 Jun 2011 by #realJSOP
Use a session variable:Session["MyVariable"] = value;
30 Jun 2011 by #realJSOP
You can use a HttpWebRequest object to post the credentials behind the scenes. Google is your friend.
7 Aug 2011 by #realJSOP
Is google somehow disabled or blocked by your ISP?More than 1.8 million google results for "how to create a wcf web service"[^]
29 Aug 2011 by #realJSOP
If you're asking this, then you probably aren't familiar with EF. That means there's going to be a learning curve. If you think that the schedule is robust enough to absorb the learning curve (including at least one project restart due to "lessons learned"), go for it. If not, avoid it.
31 Aug 2011 by #realJSOP
You need to write a custom control that lets you use HTML in the list items (evidently, it's difficult to make it work under all of the browsers). I know there are controls out there you can buy if you want to go that route. Here's one:http://easylistbox.com/demoCustomized.aspx[^]
2 Sep 2011 by #realJSOP
Yes. If it's possible to get sued for not showing enough emotion in a birthday card, then it's certainly possible to get sued for something you do with someone else's code. You should really ask a lawyer these questions. Anyone here that's either been sued or has sued someone over software...
21 Sep 2011 by #realJSOP
The way the data is presented to the user is completely up to you. Once you retrieve the data, simply don't give them a form - just display the data.
28 May 2023 by $ultaNn
I have deployed the application in IIS Version 10 of Windows server 2019 the session is getting null when the page is redirected to another page from login. In Windows 11 IIS it's working fine here is my Web.config code For more information...
19 Oct 2011 by 2011999
Dear All Experts,One folder in more than one file upgradeReport_File, app_code,App_data, Backup, bin,Css, Images, js, show, upload, userControl, utils,DisplayRecord.aspx, DisplayRecord.aspx.csHandler.ashx, PhotoDetails.aspx, Sample(3).sln, sample3, suo, showFullSizeImg.ashx,...
13 Jun 2011 by 204.sharma
Dear Sir, i want to run my 32 bit application on 64 bit operation system.can anyone help me to configure my iis 6.0.Thanks
28 Aug 2012 by __TR__
I am not sure if i understood your question correctly.Assuming that you want to pass values from one page to another, you can go for query strings.You may find the below article helpfulPassing variables between pages using QueryString[^]Get query string values in JavaScript[^]More...
28 Aug 2012 by _Amy
Through Javascript you will not be able to pass values between pages. You need some objects to store the values which can be shareable throughout the pages. In this case you can use QueryString to pass the values between the pages and you can retrieve it using javascript.Otherwise you...
29 Aug 2012 by _Amy
Don't you know about google[^]? Your subject itself is giving About 4,510,000 results (0.28 seconds). Google is your friend. Try using that first. If any problem comes then you can ask for the solution. We all are here to guide you, help you.All the best.--Amit
21 Feb 2013 by _Amy
JavaScript is an interpreted computer programming language originally implemented as part of web browsers so that client-side scripts may interact with the user, control the browser, communicate asynchronously and alter the document content that is displayed.See...
27 May 2013 by _Amy
Hi,Yes, if the control on the page is rendered before the ScriptManager in the UserControl, this error will be raised.See the similar solution here[^].--Amit
6 Jun 2013 by _Amy
Yes, you can do it. Resize your image while uploading, then save it. Refer the links:How to reduce image file size without losing quality using asp.net[^]How to create thumbnail image in ASP.Net/C# OR resize the image before upload in ASP.Net/C#[^]Resize image in ASP.NET[^]Resize image...
13 Feb 2013 by _Maxxx_
As you are printing on the client you need to provide the client with suitably formatted html (or other file type)You can use a print style sheet (see here[^] for a good explanation.Alternatively you can build (say) a PDF file server-side and provide it to the user to print.
13 Feb 2013 by _Maxxx_
You could certainly do it for a single page with CSS - if you want to print multiple pages 'in one go' it would be harder.Is it necessary to have pre-printed stationery? It would be far easier to print the titles and the data togetherWith CSS you can specify sizes in cm (for example) so...
9 Mar 2013 by _pohenix_
Validate with your hosting provider may have a security policy that prevents you from performing that action.
11 Oct 2011 by _Tushar Patil
Hi,Just Put all Controls On Update panel Except Cancel Button Which Will Close The Modal Popup.....
29 Aug 2011 by _Zorro_
Hi,There are some tools out there, but if you really intend to do some tests you should investigate a bit more.Testing is not that hard, it's just a question of reading, understanding and applying what you've learned.Have a read about Unit Testing and Integration Testing, this should...
12 Mar 2012 by _Zorro_
Hi,You could use google...http://www.findbestwebhosting.com/top10hostingcompanies.aspx/windows-web-hosting/1[^]
30 Oct 2012 by a1mimo
Actually you can do this by just adding your user ID or Code or whatever you want as a query string in the link itself and configure your page to do whatever you want to if the link has a query string in itex: your user ID is 1113your link would be...
2 Sep 2013 by Aamir Mitha
Hey guys so I am creating an Event and what I want to do is copy over the attendees from last years event.This is the code I currently have:protected void Button3_Click(object sender, EventArgs e) { string constring =...
4 Sep 2013 by Aamir Mitha
Currently this is the code in my .cs file; notice it does 'throw new NotImplementedException();', so it is ment to throw this exception when a duplicate field is being entered from my form into the database. The field name is 'Awards_Title'public partial class NewPages_Create_New_Awards :...
31 Mar 2013 by aamirsami
hey guys i am new to this asp.net stuff. I have a .aspx page which has a function something like this. this function is getting called from page_load event as shown below.//page load eventtry { Response.Write(SendMessages()); } catch(Exception...
1 Nov 2012 by Aarti Meswania
simple Javascript code runs at clientside or serverside?
8 May 2013 by Aarti Meswania
try setting width in percentage e.g. 100% of screen or 70% Happy Coding!:)
3 Feb 2014 by abdul subhan mohammed
Your answer is here:Use flags
29 Dec 2012 by Abdullah Altokhais
Windows Forms application for capturing or thumbnailing a web page
13 Dec 2013 by Abhay Pati Tripathi
I have a social networking website developed in ASP.NET C#. I am using SignalR 2.0 to live update posts of users to all the online users on my website.This website is deployed at to different servers, for desktop users with URL www.xyz.com and for mobile users with URL m.xyz.com.The live...
9 May 2013 by Abhay@Accenture
16 Jul 2012 by abhijeetgupta1988
You can try using jQuery.noConflict() [^].Hope it'll solve your problem.
9 Dec 2010 by Abhijit Jana
A simple guide for beginners, explaining one method of displaying images taken from a database on a GridView inside an ASP.NET web page
26 Nov 2009 by Abhijit Jana
The application attempted to perform an operation not allowed by the security policy. To grant this application the required permission please contact your system administrator or change the application's trust level in the configuration file. When you are getting this error ? Are you doing some re
31 Aug 2011 by Abhijit Jana
Here is a complete tutorial on hosting a database with an ASP.NET Web ApplicationDeploying a Database [^]Hope this will help you !
9 Sep 2011 by Abhijit Jana
You can find some nice samples in CodeProject ItselfASP.NET Required TextBox (Graphical RequiredFieldValidator)[^]andBuilding an ASP.NET custom web control: a textbox and validator in one[^]Hope this will help you to go forward.
14 Sep 2011 by Abhijit Jana, Abhinav S
Frequently asked questions on ASP.NET GridView at CodeProject Question Answer forums.
20 Jul 2010 by Abhinav S
The Silverlight toolkit[^] offers charts that can be used in Silverlight development. These are open source and free of charge.
5 Oct 2010 by Abhinav S
This[^] site might be of some help to you.
20 Oct 2010 by Abhinav S
Visual Studio could be a good tool - especially since you have good C# knowledge.
21 Oct 2010 by Abhinav S
Yes we can use flash with ASP.Net.See here[^] or here[^].
9 Feb 2011 by Abhinav S
Saving to the database is easy. Have a WCF service that you talk to.Allowing all clients to know that there has been a change in the database is trickier.You need to implement a notification mechanism using duplex mechanism calls[^] or sockets.
8 Mar 2011 by Abhinav S
Make sure the URL to the web service is correct on the server.You will need to keep the URL dynamic (as in load from a text file or database) so that you can change this as and when required - without compiling your code.
25 Jul 2011 by Abhinav S
There is a third party that does this[^] for you.Its not free though.
31 Aug 2011 by Abhinav S
Every item has a fontweight attribute.So you will need to do something similar to item.Attributes.Add("style", "font-weight:bold"); via code to make this work.
8 Oct 2011 by Abhinav S
There is no way you can do this without a WCF service or some sort of mechanism (maybe sockets. if the webpage runs over the intranet). You will need a communication channel.
24 Oct 2011 by Abhinav S
If you are just looking for client side email verification[^] might be a good place for you to start.http://www.asp.net/security/videos/implement-the-registration-verification-pattern[^] could be useful to you as well.If you are just looking for email validation, then a simple regex...
13 Jan 2012 by Abhinav S
If you are looking at asmx services, then go through the video tutorial here[^].Another set of videos available here[^].WCF video tutorial - start with video set here[^].
28 Jan 2012 by Abhinav S
It depends on what you need to do. Both languages have their pros and cons.You might want to read some more about languages and you will surely be able to reach a conclusion on your own.Fairly neat comparison here[^].
5 Mar 2012 by Abhinav S
Have a look at Custom Date and Time Format Strings[^].