open a popup window from.net code behind
Hi
I am trying to open a new window from a button in my aspx side. This works, but I have to push the button 2 times before it open. Any idea?
Public Shared Sub OpenPopUp(ByVal opener As System.Web.UI.WebControls.WebControl, ByVal PagePath As String)
Dim clientScript As String
'Building the client script- window.open
clientScript = "window.open('" & PagePath & "')"
'register the script to the clientside click event of the opener control
opener.Attributes.Add("onClick", clientScript)
End Sub
Sub Button1_Click(sender As...
Net:Net:Net::LDAP::FAQ------_=_NextPart_001_01C6429F.D89AA417
Content-Type: text/plain;
charset="us-ascii"
Content-Transfer-Encoding: quoted-printable
Hello,
Net::LDAP
Net::LDAPS
Is there a possible to LDAP bind with an encrypted (SHA, SSHA, CRYPT,
....) password? I don't like to write the secret password to the perl
file.
Best regards
Barbara Wilbert
------_=_NextPart_001_01C6429F.D89AA417--
Wilbert Barbara (CI/OSI) * wrote:
> Hello,
>
> Net::LDAP
> Net::LDAPS
>
> Is there a possible to LDAP bind with an encrypted (SHA, SSHA, CRYPT,
> ......
how to get value from client side script Prompt window to a session var in .net
hi guyz,
i hav a problem with getting a value from a client-side inputbox to a session var in .net.
is this possible?
however, when i click submit button this is the code that's triggered.
dim sb as New System.Text.StringBuilder
sb.append("<script language=" & """" & "vbscript" & """" & ">")
sb.append(vbcrlf)
sb.append(vbcrlf)
sb.append("do while xLate =" & """" & """")
sb.append(vbcrlf)
'//prompt window, val...
Side by Side Execution of .net v1.1 and .net v2.0
Hi i am new bie to asp.net 2.0.Till date i have been developing projects using VS.Net 1.1 and now i hv decided to upgrade to new version 2.0.Now i want to run and develop my projects using any of the versions as desired.My question is that can i install vs 2.0 without updating the previous version and will i be able to develop and run my applications in any of the versions as desired.i have been known that we can run these versions side by side(i.e. one application can use 1.1 and other 2.0),but can we do side by side development as well(i.e. one application can use 1.1...
DataWindow .NET for Windows CE .NETIt is possible to use DataWindow .NET for Windows CE .NET?
When
I create a Smart Device Application project for Visual C#, I
can't
see the Datawindow .NET controls (DW control,
Datastore,...).
...
Side by Side Execution of .net v1.1 and .net v2.0 (continued)
Hi,
Dave wrote a previous post that said:
"If you are referring to web applications - each Virtual server must specify the framework to run under. Both can run side-by-side.. but not under the same virtual server (application pool)"
That looks fine, but I wonder:
Is it just as easy as going to Administrative Tools --> IIS --> Select the virtual directory --> go to the property's ASP.NET tab and then selecting the ASP.NET version?
Is there some important information that I need to know before going into this? Are there going to be ANY issues I should be aware of?
T...
Validation Controls in .NET ( Client side or server side?)
i have a very basic question. We have all these validation controls in asp.net ( required field, range validator and others)..my question is the required field validator is a server side control. So does that mean that it does a post back?..is it client side or server side control
The only controls that post back are buttons and other inputs where you set AutoPostback="True", such as a dropdownlist or a textbox. Another way of posting back is using an UpdatePanel and placing a trigger in it for a specified control and/or event.
All controls are considered clien...
Jscript, moving from client-side to server-side (.NET)
Hey all
I’m working translating a web-app written in client-side
Jscript to run on the server-side as JScript.NET. Without needing to get too
specific, I am using Jscript because the original page aggregated raw data to
produce statistical results (this was done dynamically based on user 'sort-by'
options). The final output is an html report that can be emailed.
Because this is currently being done on the client side, as
the raw data grows the load-time grows as well (to the point that has almost
become unusable). I’m posting here to see if anyone has any experi...
.NET for client side?
Is this the idea of "Atlas" but using JavaScript rather than another technology?
Atlas's goal is to abstract various browser implementations of DOM API and to ease out the developer's job to write rich client applications. Atlas hence makes use of the existing all-browser supported JavaScript to achieve this.
Thanks for your reply.Let me convey my idea differently: I would like to author client side code using a class system. I recognise that Atlas is a technology for producing JS code, much in the same way that ASP.NET produces HTML for the browser.Will Atlas be m...
.NET 2.0 Data Connection (.NET 2.0 Beta Data Provider)I have installed the .NET 2.0 Beta Data Provider, in the
server explorer in Visual Studio 2005 I have tried to
connect to this provider but I can not see it in the list.
Is there something else you need to do to see this other
than what is in the instructions or is this not supported
yet?
Hi Dean,
I assume you mean ASE ADO.NET 2.0 Beta.
I'm attaching the html readme for this product that you should have from
downloading it.
Are you talking about using Server Explorer to see the Provider? This
functionality
isn't working yet and should be available on GA or shortly ...
superreview granted: [Bug 263844] Javascript window.close() on popup not working when popup is opened in tab : [Attachment 162257] set opener on opened windows diverted into tabsBoris Zbarsky <bzbarsky@mit.edu> has granted Boris Zbarsky <bzbarsky@mit.edu>'s
request for superreview:
Bug 263844: Javascript window.close() on popup not working when popup is opened
in tab
https://bugzilla.mozilla.org/show_bug.cgi?id=263844
Attachment 162257: set opener on opened windows diverted into tabs
https://bugzilla.mozilla.org/attachment.cgi?id=162257&action=edit
------- Additional Comments from Boris Zbarsky <bzbarsky@mit.edu>
r+sr=bzbarsky. Dan, thanks for doing this!
I really wish we could factor some of this code that's being copied f...
When to use client side varidation and server side varidation in .net?
In .net or classic web application we can varidate user data either on client isde or server side. How to select which side varidate to be used? Thanks!
Generally, I use both client and server validation. I make sure the input is in the correct format and reasonably valid on the client, then I verify the data on the server. The extent of validation also depends on the type of data that I need to validate.Here are a few references:Validating ASP.NET Server ControlsIntroduction to Validating User Input in Web FormsClient-Side Validation for ASP.NET Server ControlsSecurity Checklist...
Open Popup Window and Close the window that Opened it
I'm using some code that I found on this site to open a Popup window with a Button Click for a Crystal Report:
Dim PopUpScript As String = "<script language='javascript'>" + "window.open(" & Chr(39) & strExportFile & Chr(39) & ");</script>"
Page.ClientScript.RegisterStartupScript(Me.GetType(), "PopUpWindow", PopUpScript, False)
After the Popup Window shows the Report I would like to close the window that opened this popup window.
Thanks,
Mark
just add
window.close();
in
Dim PopUpScript As String ...
I am not getting my mail open on my net as net is runningName:
Email: rmbala91atgmaildotcom
Product: Firefox
Summary: I am not getting my mail open on my net as net is running
Comments:
My mail is not getting opening.
Browser Details: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3
From URL: http://hendrix.mozilla.org/
Note to readers: Hendrix gives no expectation of a response to this feedback
but if you wish to provide one you must BCC (not CC) the sender for them to
see it.
...