Home
Get Started
Learn
Downloads
AJAX
MVC
Community
Wiki
Forums
Sign in
|
Join
Home
›
ASP.NET Forums
›
Search
Search
You searched for the word(s): userid:899333
More Search Options
RSS Available
Matching Posts
Web Application in 3 tier architecture.
I am using ASP.NET and C#. I want to develop a web application in 3 tier architecture. I need guidance (in depth) regarding how to create a 3 tier web application. Any help will be appreciated. Thanks in advance.
Posted to
Architecture
(Forum)
by
arjit.malviya
on 11/24/2009
Re: convert an asp.net project tu project.exe
Add a new project in your existing web project. Go to -> Add a new project-> others -> setup & deployment -> Web setup project.
Posted to
Getting Started
(Forum)
by
arjit.malviya
on 11/14/2009
Re: Just starting, which of these 2 is better for a novice?
I will suggest ASP.NET 3.5 Unleashed by Stephen Walther. http://www.amazon.com/ASP-NET-3-5-Unleashed-Stephen-Walther/dp/0672330113
Posted to
Getting Started
(Forum)
by
arjit.malviya
on 11/12/2009
Re: window.location.href vs Response.Redirect
In Respons.Redirect you can pass more than one argument. Example : Response.Redirect( "~/newpage.aspx" , false ); All other differences you have already mentioned. Now it is just a matter of choice.
Posted to
Getting Started
(Forum)
by
arjit.malviya
on 11/12/2009
Re: Approach comments.
Creating Stored Procedure in SQL Server is the best method to stop SQL Injection problem. If you write your sql query in ASPX or C#, it can be tampered easily by providing some invalid inputs. Read this article about SQL injection : http://msdn.microsoft.com/en-us/magazine/cc163917.aspx
Posted to
Getting Started
(Forum)
by
arjit.malviya
on 11/11/2009
Filed under: sql injection
Re: any1 can relay any Emails thru any strange public webmail!?
Generally server requires SMTP authentication to send mails. But if such scenario occurs where no authentication is required, in such case that email sent is moved to 'Spam' folder by Gmail or Yahoo (as it fails to verify domain key). Following code shows sending email using ASP.NET, C# 3.5 (with SMTP authentication) using System.Net.Mail MailMessage msgMail = new MailMessage(); MailMessage myMessage = new MailMessage(); myMessage.From = new MailAddress("sender's email"); myMessage
Posted to
Security
(Forum)
by
arjit.malviya
on 11/11/2009
Re: Parser Error Message: Root element is missing.
"machine.config" file located in (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\CONFIG), is corrupted. There may be only null entries. The solution that I found is to substitute this file for "machine.config.default" file, located on the same path.
Posted to
Configuration and Deployment
(Forum)
by
arjit.malviya
on 11/11/2009
Re: Login page wont prevent access to other pages in website
I hope you are using Form Authentication and C#. Use the follwing code in every page you want to restrict access without login. Use this code in Page_Load method. For using this do not forget to import following namespace. using System.Web.Security; In Page_Load write : if (User.Identity.IsAuthenticated == false) { FormsAuthentication.RedirectToLoginPage(); } If you are not using FORM Authentication, then use it by adding the following code in your web.config file <authentication mode="Forms">
Posted to
Security
(Forum)
by
arjit.malviya
on 11/11/2009
Re: On SignOut disabling back button
Please use the following code to clear the browser cache. In this way, previous page will get expired and will not open. Response.Cache.SetCacheability(HttpCacheability.Public);
Posted to
Security
(Forum)
by
arjit.malviya
on 11/10/2009
Re: RegularExpressionValidator dsn't work
Add ValidationGroup= "insert" in RegularExpressionValidator.
Posted to
Web Forms
(Forum)
by
arjit.malviya
on 11/5/2009
Page 1 of 4 (40 items) 1
2
3
4
Next >
Silverlight:
ASP.NET 4, ASP.NET MVC, and Silverlight 4 Videos of my Talks in Europe
Channel 10:
Faster Solid State Drives for Windows 7 Arrive
ASP.NET:
Death to confirmation dialogs with jquery.undoable
Channel 9:
E2E: Brian Beckman and Erik Meijer - Co/Contravariance in Physics and Programming, 1 of 2
TechNet Edge:
Windows Server 2008 R2 Quick Look #3 - PowerShell V2
ASP.NET:
2009 Blogged - Greatest Hits
WindowsClient:
2009 Blogged - Greatest Hits
Channel 9:
Nikolaj Bjørner and Leonardo de Moura: The Z3 Constraint Solver
Channel 9:
MEF & Silverlight 4 Beta - Part 2, Imports & Exports
Channel 9:
MEF & Silverlight 4 Beta - Part 1, Introduction
WindowsClient:
The (Near) Final Word on Multi-Monitor Taskbars for Windows 7 - Ultramon vs. DisplayFusion
WindowsClient:
Looking back at 2009, and forward to 2010
Silverlight:
Polling Video – A Viable sub-second alternative?
TechNet Edge:
Windows Server 2008 R2 Quick Look #2 - Active Directory Recycle Bin
Channel 10:
I'm a Windows 7 PC Themes
Channel 10:
24 Years of Windows Box Art
WindowsClient:
Silverlight tutorial: HOW TO build CommandLink Control in Silverlight with Expression Blend 3 and Behaviors
ASP.NET:
Converting an RGB Color To Hex With JavaScript
Silverlight:
Silverlight HVP Design – Configuration & Scenarios
Channel 9:
Channel 9 Live at PDC09: Day 3 Welcome
Microsoft Communities
ASP.NET
Channel 8
Channel 9
Channel 10
IIS.NET
Silverlight
TechNet Edge
WindowsClient
Mix Online