User experience
Here is some good advice concerning accessibility and an architect`s view of a good User Experience
ASP.net C# VB.net and other programming languages...new software and other tech-related articles...with the good and the bad...
Here is some good advice concerning accessibility and an architect`s view of a good User Experience
Posted by
Vlad
at
12:52 PM
0
comments
Tags: Programming
I read a few days ago about some articles that could prove really useful when programming Membership and Roles for ASP.net 2.0:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html/ASPMemManSec.asp
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html/ASP2memroleman.asp
Then why am I writing here about the same thing? Well...Because the same author created 2 more articles that cover the new technologies(Atlas)
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html/membershipeditoratlas.asp
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html/membershipeditorwithprofile.asp
Happy coding!
Posted by
Vlad
at
9:03 AM
0
comments
Tags: Programming
Bad news for office 2007 beta testers. Due to a high demand for the beta Microsoft is going to charge 1.50$ for the download beginning next Wednesday at 6 p.m. Now that`s really bad news and the worst thing is that it creates a precedent and large corporations may start asking for small fees when you download their beta. On the other hand...I`ve been using the office 2007 beta for some months now and I`ve been really satisfied with it(I didn`t use office 2003 at all). The best feature that the beta has(in my opinion) is Save As PDF, unfortunately the full version won`t have this feature built-in and you`ll have to download it as an add-on....
Posted by
Vlad
at
10:15 AM
0
comments
Tags: Software
Release early, release often. That`s what the Google code page says. Google code is a new service that Google offers to the Open source community.
Happy coding.
Posted by
Vlad
at
7:03 PM
0
comments
Tags: web
Looked at the wii site today because the ad on yahoo really captured me...The site looked nice and clean...looked at one video...amazing
....looked at another...again really nice...
Then looked on youtube for more videos...
I heard that it will be quite cheap....so...now I know what I want for my birthday :)
Posted by
Vlad
at
10:22 AM
0
comments
Tags: web
In case you want to create C# applications( either windows forms or ASP.net ) here are some things that might help you:
Microsoft Labs(all you need is a windows live account that you can get here):
Visual C# Labs
Visual Studio 2005
ASP.NET 2.0
Web Services
SQL Server 2005
Also you can try this books:
Posted by
Vlad
at
7:48 PM
0
comments
Tags: Programming
Found this while trying to create a post about free content for webmasters...looks cute :)
Enjoy
Posted by
Vlad
at
12:09 PM
0
comments
Tags: web
This is a teaser that I found on Youtube...It certainly has done it`s job as it really got my interest :)...I don`t know what it`s all about...It is not for Vista since it says summer 2006...and it`s something about entertainment...maybe that Zune player but I think it`s too early for that...any ideas?
Posted by
Vlad
at
10:54 AM
0
comments
Tags: web
When creating applications that requre a large amount of processor power always use
Thread t = Thread.CurrentThread;
t.Priority = ThreadPriority.BelowNormal;
if you want to be able to use your computer :)
Posted by
Vlad
at
10:46 PM
0
comments
Tags: Programming
Today I installed the newest browser from Microsoft(IE Beta 3)..I did not try any of the previous beta versions.
Also I installed the newest version of Mozilla Firefox, the 2.0 Beta.
So...I tryed to compare the two....and overall I think the two browsers made some big advances when it comes to user interface...and I really enjoy this war.
What I like at the new IE:
-Tabs (Finally)
-That they added search...and most of all that it started with google as the default search engine(might be from settings in IE 6..)
-That you can change the search provider really fast in case you get bored.
-That they added a lot of tools.
-Also I think it`s faster than any of the previous IE versions...but that`s only my opinion
-RSS feeds (Finally)
-That it works fine with my Windows X64 Professional
What I like at the new Firefox:
-That it`s Mozilla FIREFOX :)
-That it has the same features that my old firefox had.
-That the number of addons is getting larger and larger.
-You can change search providers.
-RSS Feeds...
-Almost everything that IE 7 has :)
Overall the big change is on the Microsoft side...and mostly the change is good. I really enjoyed browsing with IE 7...
Surf`s Up...
Posted by
Vlad
at
10:21 PM
0
comments
Tags: Software
This will show a way to get data on the site dynamically without the need to update the whole content of the page, updating just part of the website, in our example just a simple div on a asp page.First thing noted here: the page will be an asp page(not .NET) that will be hosted on IIS.
Creating the site`s design. In other words what I would like this thing to do.The site will be composed of 3 pages: test.asp, first.html and second.html .The pages first.html and second.html will just contain a div that we will eventually show on the test.asp page and will just contain the following text:
First.html
<div id="Content"> here is the first page content</div>
Second.html
<div id="Content"> here is the second page content</div>
Our main concern from now on will be the test.asp page. The first thing we will do is build the JavaScript that will handle our requests. This script can be anywhere on the page but usually it is either in the Head portion or after the end of the body. So, this is the JavaScript:
1 <script type="text/javascript">
2 function GetContent(Location,TheDiv)
{
3 ChangedDiv = TheDiv;
4 try
{
5 xmlhttp = window.XMLHttpRequest?new XMLHttpRequest():new ActiveXObject("Microsoft.XMLHTTP");
}
6 catch(e)
{
7 alert("Your browser does not support AJAX");
}
8 xmlhttp.onreadystatechange = FinnishedRequest;
9 xmlhttp.open("GET", Location);
10 xmlhttp.send(null);
11 return true;
}
12 function FinnishedRequest()
{
13 if ((xmlhttp.readyState == 4) && (xmlhttp.status == 200))
{
14 document.getElementById(ChangedDiv).innerHTML = xmlhttp.responseText;
}
}
15</script>
Our main function is GetContent(Location,TheDiv,event) (line 3). The function takes 3 parameters: Location – The location of the data that will be requested by the function. TheDiv – The div that will be changed every time the function is used.(in our case this will be ‘TestDiv’)
On line 3 we simply copy the TheDiv variable to a ChangecDiv variable that will be used further in the script.The try..catch statement the comes next is the part where we create the Xml Request object and in order for the script to work cross-browser this part of the script is harder to understand.xmlhttp = window.XMLHttpRequest?new XMLHttpRequest():new ActiveXObject("Microsoft.XMLHTTP");This is actually a compressed if statement that should be like this:
If (window.XMLHttpRequest) { xmlhttp = new XMLHttpRequest(); }else { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); }
The script is like this because Microsoft did not natively implement the Xml Request object and just implemented it as an ActiveXObject while all the other browsers(that deserve attention) implement it natively. So what the if really does is this:
Lines 8,9 and 10 just handle the request itself, so it first(8) creates an event handler that will handle the onreadystatechange that occurs when the state of the request changes. Then(9) it creates the request itself using the GET method and the Location from where the date will be retrieved. The next thing to do(10) is to actually send the request that will be handled by the server.
When the request is sent our next job is to handle the data that will be retrieved by the request. Our handler will be FinnishedRequest() that will just check the state and the status of the request and will display the date in the given div. This is accomplished this way:
Line 13 – test the state of the request and if it is 4 then the request state is ok. Then test the status of the request that can be any status code known from the request object. We will only accept the request if the status if 200(OK).
Line 14 – we simply get the object that will be updated and write the received content in the innerHTML.
Next job: creating the buttons that will trigger the Xml Requests.
<input id="button1" type="button" value="First Content" onclick="return GetContent('first.html','TestDiv');" />
<input id="button1" type="button" value="Second Content" onclick="return GetContent('second.html','TestDiv');" />
<div ID="TestDiv">Initial text</div>
You can now test the script and start building some amazing things using this technology
Posted by
Vlad
at
12:18 AM
0
comments
Tags: Programming