If EnableViewStateMAC is set to true, ASP.NET will generate a hashcode for the ViewState data and compare it to the hashcode stored in the posted value. What prevents an attacker from setting the hash based on the altered form values?
...
I am planning a fairly large web deployment with geo-redundancy capability.
This is not just clustering a number of servers in a same server room. Some points to consider
Load sharing among multiple sites
Traffic distribution based on user geographic location (e.g. west coast users only access servers in west coast, etc.)
Traffic (auto...
how to minimize threat on website?can u list the way to minimize that problem?
...
I want to integrate the youtube API into my app, how can i do it???
p.s.
I'm making an app for a youtube channel. I tried opening youtube in a webview, but this made everything even worse because the user could see the youtube controls (search etc.) and that strange message about the "youtube iphone app".
...
Hi guys, I’m just graduating from a CS course and I’ve done xhtml, css, javascript and php (not in massive detail) but I really don’t know where I should go from there. I wanna learn .NET I think, what does that encompass? I’d like to work on my web development, can you guys recommend any books that for instance talk you through building...
I'm building a web service, and it uses an external web services (example http://www.webservicex.com/stockquote.asmx?WSDL) , how do I consume the external web service inside the web service im building?
...
Hey guys,
I need to be able to execute either a php or jquery function to update a sql database every certain segment of time, 20 minutes for example, regardless of user activity on the website. Does anyone know the easiest way to do this? Thanks, any help is appreciated.
...
I have a web application where I need to display .eml files (in RFC 822 format) to the users, formatted properly as e-mail - show the HTML to text body properly, show images, attachments and so on. Do you know of a component / library that can do those things?
I prefer it would be in Java (and to integrate with spring easily :-) ), but...
Hi,
I'm developing a website and I'd like the users be able to upload files to the server using a webpage.
The server side is .NET, but it's not ASP.NET. That means, I'm generating the html code myself instead using ASP.NET, and I'm working with the GET string and POST stream directly. It's a good exercise to learn what happens under ...
we have a url for eg https://www.egdomain.com/ and the ssl is valid for egdomain.com.
so how can i redirect all the requests from https://www.egdomain.com/ to https://egdomain.com/
the site also has normal http requests which works fine.
I tried the htaccess below but still nothing
RewriteCond %{HTTP_HOST} ^www\.(.*) [NC]
Rewrite...
Hi,
I want to implement webpart personalization. But I have existing structure for login and role. So, I can not use default personalization (membership).
Is it possible to implement webpart personalization without using default membership and role provider?
Please share your idea regarding this.
Thanks in advance,
Naresh Goradara
...
I'd like to develop an .NET application, where you navigate in a website and the app records the GET and POST data you send to the server, so later on you can reproduce it programatically.
I've been taking a look on the WinForm's WebBrowser component but I see no way to get the POST data I'm sending.
Do you know of any component (even ...
I'm looking for examle/tutorial showing implementation of both client and server side code.
Client - simple html webform containg three controlls: username, pasword input and a submit button.
Server - a program written in c/c++ that receives username and password from the client and verifies them(sql or simple file).
...
Hi,
I've a basic php script set up on a web server to accept xml files received sent via Http post. So far so good. But I'm wondering about security issues and what other things I would need to be aware of before I could put this live. Has anyone done this beofre and what things I should be aware of?
Basically all I have so far is:
<?...
How can i redireect from https to http?
i have the code below but it does not seem to work.
server {
listen 443;
server_name example.com;
rewrite ^(.*) http://example.com$1 permanent;
}
...
Hi,
I am planning to check my website against all common security vulnerabilities like cross site scripting ,sql injection etc. Can somebody tell me is there any automated tool which I can run for my .net web app and find all security flaws exist. I tried CAt.net but it is not able to support big apps. i saw abt owsap but againt it is a...
one thing that annoys me on youtube is that it always starts playing the video automatically after opening the video page.
is there a way how to prevent it? i don't see such option in profile settings.
...
I would like to know the basic difference between web 2.0 sites and other sites.
Today, a newish set of internet technologies and fresh philosophies on how to harness the interconnected nature of the network are gaining significant attention from consumers and venture capitalists. It’s the web, version 2.0, or Web 2.0 as it has been dubb...
Can anyone tell me where to find an visual studios 2010 atl web service template like the one that comes with visual studios 2008?
Thanks.
...
Hi all,
I need to automize login process of a widsite.
After googling for a while, I wrote this code.
But the problem is after running this code, no errors, no output.
I am unable to know where I went wrong.
private void Form1_Load(object sender, EventArgs e)
{
WebBrowser browser = new WebBrowser();
stri...