Click here to Skip to main content
15,922,894 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionHow to resolve "The security ID structure is invalid " Pin
Raghu Alluri8-Nov-06 4:12
Raghu Alluri8-Nov-06 4:12 
QuestionSorting GridView according an IP column Pin
3nbar, A7mad A8-Nov-06 3:49
3nbar, A7mad A8-Nov-06 3:49 
AnswerRe: Sorting GridView according an IP column Pin
indianet8-Nov-06 10:58
indianet8-Nov-06 10:58 
GeneralRe: Sorting GridView according an IP column Pin
3nbar, A7mad A8-Nov-06 21:30
3nbar, A7mad A8-Nov-06 21:30 
QuestionProblem implementing Http Handler Pin
King Shez8-Nov-06 3:48
King Shez8-Nov-06 3:48 
QuestionProblem implementing Http Handler Pin
King Shez8-Nov-06 3:48
King Shez8-Nov-06 3:48 
AnswerRe: Problem implementing Http Handler Pin
indianet8-Nov-06 10:47
indianet8-Nov-06 10:47 
GeneralRe: Problem implementing Http Handler Pin
King Shez8-Nov-06 22:27
King Shez8-Nov-06 22:27 
using System;
using System.Web;
using System.IO;

namespace testhandlers
{
///
/// Summary description for Class1.
///

public class MyHttpHandler : IHttpHandler
{
// Override the ProcessRequest method.
public void ProcessRequest(HttpContext context)
{


HttpFileCollection file = context.Request.Files;
int MaxFileSize = 2* 1024 * 1024;
for(int i =0;i<file.count;i++)
{
="" file="" tempfile="new" file();
=""
="" int="" filesize="file[i].ContentLength;
" if(filesize="" *="" 1024="" *1024=""> MaxFileSize)
{
context.Response.Redirec"ErrorForm.aspx");
}

}
}

// Override the IsReusable property.
public bool IsReusable
{
get { return true; }
}
}//class
}/NameSpace
QuestionHow to debit a Credit Card? Pin
matthias s.8-Nov-06 2:55
matthias s.8-Nov-06 2:55 
AnswerRe: How to debit a Credit Card? Pin
darkelv8-Nov-06 3:35
darkelv8-Nov-06 3:35 
QuestionMasked Edit Control in ASP.Net Pin
aaraaayen8-Nov-06 2:38
aaraaayen8-Nov-06 2:38 
AnswerRe: Masked Edit Control in ASP.Net Pin
ednrgc8-Nov-06 3:02
ednrgc8-Nov-06 3:02 
QuestionFont/Color DIalog box for ASP .NET 1.1 Pin
DGtech8-Nov-06 2:29
DGtech8-Nov-06 2:29 
QuestionPrint Queue problem Pin
kRites8-Nov-06 1:07
kRites8-Nov-06 1:07 
QuestionRotating a text using javascript Pin
anu818-Nov-06 0:56
anu818-Nov-06 0:56 
QuestionAJAX enabled ASP.NET 1.1 web controls Pin
Mitu Chand8-Nov-06 0:46
Mitu Chand8-Nov-06 0:46 
AnswerRe: AJAX enabled ASP.NET 1.1 web controls Pin
ednrgc8-Nov-06 9:00
ednrgc8-Nov-06 9:00 
Questiondropdown width size Pin
fmardani8-Nov-06 0:37
fmardani8-Nov-06 0:37 
QuestionSystem.Runtime.InteropServices.COMException Pin
Debadiroy8-Nov-06 0:06
Debadiroy8-Nov-06 0:06 
QuestionJavascript Pin
monika_vasvani8-Nov-06 0:02
monika_vasvani8-Nov-06 0:02 
AnswerRe: Javascript Pin
saqib828-Nov-06 0:11
saqib828-Nov-06 0:11 
AnswerRe: Javascript Pin
saqib828-Nov-06 0:21
saqib828-Nov-06 0:21 
AnswerRe: Javascript Pin
Suresh Pirsquare8-Nov-06 0:37
Suresh Pirsquare8-Nov-06 0:37 
GeneralRe: Javascript Pin
monika_vasvani8-Nov-06 17:52
monika_vasvani8-Nov-06 17:52 
GeneralRe: Javascript Pin
Suresh Pirsquare8-Nov-06 18:22
Suresh Pirsquare8-Nov-06 18:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.