Tagged Questions

0
votes
2answers
24 views

Apache: I want to enable SSI. Can anyone furnish an example config file?

Yes - Google abounds with information about configuring Apache to support SSI. But unfortunately, I still cannot seem to get it right. My questions: Can anyone furnish me …
4
votes
4answers
86 views

Ajax with Asp.Net MVC?

I need to use few of the ajax control toolkit in asp.net mvc say, Validator CallOut,ModalPopUp. and even i need to put a gridview in an update panel? can anybody give any valuable …
1
vote
2answers
70 views

Web-Development Application with built-in WebKit Page-Preview

Hi All, I've just finished planning for a web-dev app, and I need to build in a browser control to preview pages in. But, I won't use I.E. I want to use WebKit (this is for person …
19
votes
4answers
868 views

Can you help me understand this? “Common REST Mistakes: Sessions are irrelevant”

Disclaimer: I'm new to the REST school of thought, and I'm trying to wrap my mind around it. So, I'm reading this page, Common REST Mistakes, and I've found I'm completely baffled …
0
votes
2answers
496 views

Advatage of Partitioning external hard disk [closed]

I have bought a new maxtor usb external hard disk (320GB). My friends suggested creating atlest 4 partitions, so that file access will be faster and will be more fault tolerent …
5
votes
7answers
544 views

Java GUI Swing Model Explanation

I've been working with Java GUI for a while now but the whole model/structure of JFrames, paint(), super, etc is all murky in my mind. I need a clear explanation or link that will …
-3
votes
4answers
176 views

need help-variable creation in Python (continuation)

That was helpful kgiannakakis. I'm facing a problem as below: a = ['zbc','2.3'] for i in range(0,5): exec('E%d=%s' %(i,a[i])) This results in: Traceback (most recent call …
0
votes
4answers
208 views

need help-variable creation in Python

I want to create varibales as a1,a2,a3,...a10. For that i used a for loop.As the variable in loop increments..i need var gettng created as above . Can anyone give me an idea? At …