Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #11.1K
Ranked #3K
~6K People Reached
Favorite Tags
Member Avatar for showman13

Good Morning All, I have a query I need to do, but haven't been able to get it clear in my mind how to structure it... I have two tables 'members' and 'subs_track' they are linked by the 'mem_id' field in both There is a single record for each member …

Member Avatar for showman13
0
112
Member Avatar for Sorcher

Hello! Quick question, i got a file uploader that can do huge files, so if i want someone to upload 1GB, what do i set the max_execution_time in php.ini to?

Member Avatar for diafol
0
75
Member Avatar for L0s3r

[CODE]int main() { FILE *fp; unsigned long size; unsigned char *loc; fp=fopen("Hello.exe","rb"); if(fp==NULL) { printf("\nCouldn't load file"); getchar(); return 0; } fseek(fp,0,SEEK_END); size = ftell(fp); fseek(fp,0,SEEK_SET); loc=(unsigned char*)malloc(sizeof(size)); printf("\nSize of file is : %d",size); if(loc==NULL){ printf("\nError in allocating memory."); } printf("\nFread called"); fread(loc,size,1,fp); printf("\nFread fails:"); return 0; } [/CODE] I …

Member Avatar for nezachem
0
177
Member Avatar for Fortinbra

I built a file upload control in Silverlight that uploads files to the web server. I use a custom HTTP Handler to handle the upload. What would be the best practice to detect a whether a client has disconnected prior to finishing the upload? I think this could go under …

Member Avatar for Fortinbra
0
101
Member Avatar for bshyama24@gmail
Member Avatar for shrujan
0
101
Member Avatar for culebrin

Hi, I have a website on NET 2.0, there I have a textbox and after I change the text on it with a js function, try to save on the DB (I have to click on a imagebutton to save it), but on the postback the textbox.text property has the …

Member Avatar for ja3_bhende
0
2K
Member Avatar for mshravs

i want to start a website, but i don't know how to. can anyone guide me with this process. thanks

Member Avatar for ithelp
0
172
Member Avatar for thebookie

I am having a few problems with the Timer component in ASP.NET. I can get it to work in the C# part of visual studio but not in the ASP.NET. The thing is a number will be logged into the website so each person will need to view the same …

Member Avatar for herrturtur
0
2K
Member Avatar for sieghuirt

i'm currently doing an assignment which asked me to do something like a sudoku. but this 1 is a 4 by 4 sudoku. the part tat i'm stuck is where i need to make a grid tat enable the user to move around in it n input their answers.

Member Avatar for VernonDozier
0
103
Member Avatar for seakayaker

Hi, I have created a simple dialog application in which I have a button and a status window. I have managed to properly display status messages to this status window using sendmessage when the user hits the button. However, there seem to be a timing issue when I try to …

Member Avatar for seakayaker
0
118
Member Avatar for iamy1204

i want to ask.......if i have the data in a database of mysql....how can I generate html, chart from the database(mysql)

Member Avatar for ferensick
0
313
Member Avatar for flashyflashy

I have multiple tables, table_a, table_b, table_c. Each having the same structure. i.e ID, title, rating, content. I'm using [code=sql](select * from table_a order by rating DESC) union (select * from table_b order by rating DESC) union (select * from table_c order by rating DESC) [/code]to list all titles from …

Member Avatar for ebookfinder
0
102
Member Avatar for riyas_26

I have one page which is placed in the Master Page. In the master page i have 1 dropdown and one GridView, dropdown is display the category , based on the dropdown list selection it will display the list of videos in the Grid. In the content page i have …

Member Avatar for ebookfinder
0
100
Member Avatar for S2009

Hi all, I am beginner learning ASP.NET with C# as the programming language. Currently I am working with HTTPSERVERUTILITY. I have created a web form named as Default.aspx and Default2.aspx: I have written the following coding : Default.aspx: In source view [code] <body> <form id="form1" runat="server"> <div> <asp:Button ID="Button1" runat="server" …

Member Avatar for ebookfinder
0
500
Member Avatar for anuj_sharma

Hey guys, in my website the user uploads 3 random files. I've uploaded these in a folder on my machine using the FIleUpload Control. But now i want to give a link to the user to download the uploaded files. This is what i've done so far: [CODE]HyperLink link1 = …

Member Avatar for anuj_sharma
0
68
Member Avatar for andrax

I want to add a hit counter to my webpage and wasn't sure if there's really a difference between all the free sites out there. Google returned a whole bunch of free sites to do the job that look good. Does anyone have experience with using an external site to …

Member Avatar for ebookfinder
0
166