Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim Username As String = CStr(Session("Fullname"))
If Username = "x" Or lbLoggedInAs.Text = "" Then
Response.Redirect("login.aspx")
End If...
Hi Pals,
Tq for the Nce replies and Suggestions.
But my Web Application is not a Commercial one.
This is Particularly for Internal offcial purpose of Confidential things.(act like a Intranet application)
so no screen capturing software can bee installed in the machines (Office machines).
So...
Hi TQ
My ultimate aim is to STOP taking screen shots of my web application.(ASP.Net)
If we do some stuff in code behind then SCREEN SHOTS are possible while the page is in OFFLINE (Offline content).
Any Idea
Hi Pals,
I am n need to Block Print screen button in my web application client side (ASP.Net)
iam using the below script to Block CTRL keys.but unable to trap "Print Scrn"
/*Controls the CTRL keys*/
function keyWhat(e)
{
if (window.event.ctrlKey)
{
window.event.cancelBubble = true...
Hi Guys,
I found the Solution which will Block CTRL Keys
/*Controls the CTRL keys*/
function keyWhat(e)
{
if (window.event.ctrlKey)
{
window.event.cancelBubble = true;
window.event.returnValue = false;
return false;
}
}
document.onkeydown=keyWhat;
but i need to block print screen...
Hi All,
I am n need to block CTRL+C,CTRL+V and Print screen options of my ASP.NET web application in client side.
Any innovative ideas are welcome.
thannks n advance.
Hi Pals,
I am having a ASP.NET application where i use VB code.
I have to Download a Excel File Report to a Virtual Drive...
I.e....
Application will be running in IIS server but the Excel files has to be Downloaded in another DB server(just a Download)..
I am using a Streamwriter for the...
Hi ,
Below code will make the SELECTALL/DESELECT ALL in Client side not in SERVER side.
Create a CheckBox like this
----------------------------
<asp:CheckBox ID="chkAll" OnClick="javascript: return select_deselectAll (this.checked, this.id);"runat="server" AutoPostBack="false"...
Thank for ur Rapid Reply.
I just want to create Data Object Class to Hold Record Through Properties.
No. of Methods and Names of the Methods wll be Known only @ runtime.
Hence Dynamic Class creation is Required.
Hi Guys,
I just want to create Class , attributes , methods, properties,assignments statements etc... DYNAMICALLY
(i.e Execution time)
Any Idea......
Thanks in Advance
Hi Guys,
In My application iam using English calender based date settings. But When the user changed to calender settings to japanese Calender then My SQL statements which used to retrieve data based on DATE is Not Working.Since the date stored in database is in english format.
So i need to...
Hi Guys,
Iam having a Windows service which will execute sme piece of code periodically .During that iam writing Log in EVENT LOG. Upto this every thing is Fine.
In the Event Log i want to set the Overwite option for the Log programmatically.
i.e i just want to set the property of the Log to...
Hi Guys,
Iam Filling a datagrid with dataTable. Data Table has Numeric Values. I Just want to format my Numeric Values with comma.
i.e dr(rowindex) = Format(prdtsum, "###,###,###,###,###,###,##0")
Its working Fine. Numeric values are formatted bu comma delimeter.
But Data Grid Sorting is...
In my application iam having a main report and 5 subreports for that ....report is working fine..but i dont want to display the subreport to displayed in a separate TAB when v click on the subreport.....
can u help me....
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.