Click here to Skip to main content
15,888,166 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: how to determine which row is selected by cliking one button in a gridview? Pin
Inderjeet Kaur30-Aug-09 21:08
Inderjeet Kaur30-Aug-09 21:08 
Questionstange fontsize problem when downloading Pin
Seraph_summer30-Aug-09 5:34
Seraph_summer30-Aug-09 5:34 
AnswerRe: stange fontsize problem when downloading Pin
Abhijit Jana30-Aug-09 7:50
professionalAbhijit Jana30-Aug-09 7:50 
GeneralRe: stange fontsize problem when downloading Pin
Seraph_summer30-Aug-09 8:45
Seraph_summer30-Aug-09 8:45 
GeneralRe: stange fontsize problem when downloading Pin
Abhishek Sur30-Aug-09 9:50
professionalAbhishek Sur30-Aug-09 9:50 
QuestionCan it possible to hide/Diasble view source [ HTML Source] of any Web page?? Pin
basantakumar30-Aug-09 4:02
basantakumar30-Aug-09 4:02 
AnswerRe: Can it possible to hide/Diasble view source [ HTML Source] of any Web page?? Pin
Abhijit Jana30-Aug-09 4:30
professionalAbhijit Jana30-Aug-09 4:30 
AnswerRe: Can it possible to hide/Diasble view source [ HTML Source] of any Web page?? Pin
Abhishek Sur30-Aug-09 5:59
professionalAbhishek Sur30-Aug-09 5:59 
No. it is not possible, as the entire html should be downloaded to the client browser to render content.

If you want to protect your client logic there are two way out :

1. You render everything within an object(might be Flash / silverlight) so that the actual validation logic or web service calls cant be found by the user easily.

2. You can open your website in a new window, with addressbar, statusbar, toolbar etc hidden... Also hide the context menu, so that the normal user cant find the html source very easily. This is done by most of the banking sites. Just add the code :

document.oncontextmenu = function(){
    return false;
}

To hide the context menu.

I think this helps you. Rose | [Rose]

Abhishek Sur

My Latest Articles
Create CLR objects in SQL Server 2005
C# Uncommon Keywords
Read/Write Excel using OleDB

Don't forget to click "Good Answer" if you like to.

GeneralRe: Can it possible to hide/Diasble view source [ HTML Source] of any Web page?? Pin
Abhijit Jana30-Aug-09 8:01
professionalAbhijit Jana30-Aug-09 8:01 
GeneralRe: Can it possible to hide/Diasble view source [ HTML Source] of any Web page?? Pin
Abhishek Sur30-Aug-09 9:43
professionalAbhishek Sur30-Aug-09 9:43 
QuestionChecking for Null values Pin
srikantha_nagaraj30-Aug-09 3:53
srikantha_nagaraj30-Aug-09 3:53 
AnswerRe: Checking for Null values Pin
Abhijit Jana30-Aug-09 4:30
professionalAbhijit Jana30-Aug-09 4:30 
GeneralRe: Checking for Null values Pin
Manas Bhardwaj30-Aug-09 8:28
professionalManas Bhardwaj30-Aug-09 8:28 
AnswerRe: Checking for Null values Pin
Abhishek Sur30-Aug-09 5:52
professionalAbhishek Sur30-Aug-09 5:52 
AnswerRe: Checking for Null values Pin
Inderjeet Kaur30-Aug-09 21:17
Inderjeet Kaur30-Aug-09 21:17 
QuestionCSS styles cease to be visible in ASP.NET development server Pin
Chesnokov Yuriy29-Aug-09 23:24
professionalChesnokov Yuriy29-Aug-09 23:24 
AnswerRe: CSS styles cease to be visible in ASP.NET development server Pin
Abhishek Sur30-Aug-09 9:53
professionalAbhishek Sur30-Aug-09 9:53 
AnswerRe: CSS styles cease to be visible in ASP.NET development server Pin
Chesnokov Yuriy30-Aug-09 10:19
professionalChesnokov Yuriy30-Aug-09 10:19 
GeneralRe: CSS styles cease to be visible in ASP.NET development server Pin
Abhishek Sur30-Aug-09 10:37
professionalAbhishek Sur30-Aug-09 10:37 
AnswerRe: CSS styles cease to be visible in ASP.NET development server Pin
Chesnokov Yuriy30-Aug-09 19:19
professionalChesnokov Yuriy30-Aug-09 19:19 
AnswerRe: CSS styles cease to be visible in ASP.NET development server Pin
Chesnokov Yuriy30-Aug-09 19:42
professionalChesnokov Yuriy30-Aug-09 19:42 
GeneralRe: CSS styles cease to be visible in ASP.NET development server Pin
Abhishek Sur30-Aug-09 21:27
professionalAbhishek Sur30-Aug-09 21:27 
GeneralRe: CSS styles cease to be visible in ASP.NET development server Pin
Chesnokov Yuriy30-Aug-09 22:20
professionalChesnokov Yuriy30-Aug-09 22:20 
GeneralRe: CSS styles cease to be visible in ASP.NET development server Pin
Abhishek Sur31-Aug-09 22:46
professionalAbhishek Sur31-Aug-09 22:46 
AnswerRe: CSS styles cease to be visible in ASP.NET development server Pin
Chesnokov Yuriy1-Sep-09 1:37
professionalChesnokov Yuriy1-Sep-09 1:37 

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.