I have some URL that contains special characters. For example:
http://www.example.com/bléèàû.html
If you type this URL in a browser, my web server would show the correct page (it can handle special character).
I have looked at the sitemaps specs and it's not clear whether or not sitemaps file can contain special character. From what ...
Hello all,
I am curious as to what, if any, security concerns other develpers have in regards to the use of JQuery plugins. I have seen very little talk about security where JQuery is concerned. Is it really a non issue?
Appreciate your thoughts!
...
Can anyone tell me why when I create a new web service in an asp.net project does it tell me that the host is 0.0.0.0? This is also disallowing me to test the webservice because its coming from a different IP than the host (obviously not 0.0.0.0). What the hell is going on? What did I configure wrongly?
...
Hello everyone,
I am using C# and created a proxy from a ASP.Net asmx Web Service at client side, by using Add Web Reference... feature of VSTS 2008.
And I am using the asynchronous method call model (i.e. call the AsyncXXX method, which will return immediately) and handles the complete event (I add event handler to handle the complete...
i have a web service which contains a method like the following
[WebMethod]
public string UploadFile(byte[] bytes, string file_name)
{
}
i want to invoke this web service method using HttpWebRequest so that i can stream the file without buffering in memory. How can do it... i tried to invoke it as follows
HttpWebRequest hw = ...
Hi, I'm a college student in computer sciences and I love programming. I'm fluent in Java , C++ , vb.net and some python/c#. The thing is that I don't know much about web development. Only some HTML/CSS at a very low level. I'd like to know where to get started in order to end being able to build nice websites using some languages. What ...
I am programming a small script using PHP and regular expressions
The aim of this script is to extract all links in a page and convert these links to absolute- when it is relative -
I figured how does relative links works but their are some questions also
lets say we have this page http://www.example.com/xxx1/xxx2/xxx3.html
if this pag...
Does anyone have experience with implementing OpenID on a non technical website? If you do, how were your non tech users reacting to the concept of OpenID and creation of the account on a different website?
I really like the idea of a single sign-on, but I am afraid that non-tech people who are used to create an account on every websit...
I have been tasked with finding out what is causing an issue with this bit of code:
public static ArrayList GetEthernetMacAddresses()
{
ArrayList addresses = new ArrayList();
ManagementClass mc = new ManagementClass("Win32_NetworkAdapter");
// This causes GetInstances(options)
// to return all subclasses of Win32_Netwo...
I know many on SO do not like subjective questions and I tend to be that way as well but am really curious about what others do when planning their websites' UI and navigation.
I have been searching the web for useful flow charting/diagramming tools and did find a few but started thinking maybe other people have a better approach for th...
Looking for clear and concise explanations of this concept.
...
Hi everyone!
I'm new to developing web applications using the .NET framework.
I'm just wondering if .NET has any support for saving a custom int value for each (logged in) user?
Could I perhaps use the HttpContext.User property or something?
I'd be really grateful for some help on this!
/Ylva
...
Are you satisfied with the current state of web programming? What fundamental changes or improvements would you suggest to vastly improve the state of the art of web programming? What problems do these developments address? In other words:
What are the Grand Challenges of Web Programming Technology?
...
Hello,
In an n-tiered application where you are using custom entities, how do you find yourself handling data needed from lookup tables? Do you create entities for each of these lookup tables or employ some other strategy?
For example. I have a "Ratings" lookup table that will be used to populate a dropdownlist. Would you create a ...
I want to count the visits on a web page, and this page represents an element of my model, just like the Stack Overflow question page views.
How to do this in a reliable (one visit, one pageview, without repetitions) and robust (thinking on performance, not just a new table attribute 'visits_count')
...
Tinkering with Performance Monitor, I see:
Web Service -> Current Connections
Web Service -> Get Requests/sec
Are there better counters to look at? Or perhaps other software?
Thanks,
-E
...
I have an SSL certificate for the 'www' subdomain of a web site we'll call example.com.
Therefore I can force SSL, but if the user doesn't enter 'www.example.com' into their browser, the SSL certificate appears invalid.
I wish to accomplish this with mod_rewrite rules in an .htaccess file at the root of the web site.
No matter what UR...
Hello everyone,
I am developing a Web Services based on ASP.Net asmx web service. The server end will response byte[] to client encoded in UTF-8, and client to convert the byte[] to string.
My confusion is, the England pound character at server side (I dump just before the Http response is wrote, and the character at server side is cor...
I can't figure it out.
Is it because the people making the browsers don't care? Is it because we, as developers, already write hack code to get around things that don't work in browser X and Y?
...
How can I scale a div to 100% height and width inside of another element? In my case a sourrounding td. Since I'm a plugin I can not control the other HTML on the page. Here is my HTML:
<body style="height:100%;">
<table width="600px" height="400px" border="1">
<tr>
<td style="background-color:silver;">Cell 1</td>
<td...