Unable To Make The Window Pop Up On User Side?
Feb 18, 2010
i am developing a chat engin and i need some guidenc i have done to some exten but i am unable to make the window pop up on both the users i.e if a want to chat to b if he clicks on b the window is poping up in a's side but it's not poping up on the b's side
View 1 Replies
Similar Messages:
Sep 10, 2010
In ASP.NET, Session_End will be fired when the Session is time out then I can guess the user has left or close the Browser window in this method. But there is some delay till time out, is there any better solution?
View 2 Replies
Dec 28, 2010
i am doing one chat application in that chat application i have one private chat now i want if i click one user logo that pop chat window automatically fired in that user window how do i that
View 1 Replies
Apr 30, 2014
i have a grid as
<asp:GridView ID="dgv_passengerdetails" runat="server" AutoGenerateColumns="False"
CssClass="pasdetailsgrid" BorderStyle="None">
<Columns>
<asp:BoundField HeaderText="Seat No" DataField="seatno">
<ItemStyle HorizontalAlign="Center" />
</asp:BoundField>
[code]...
the string gs=null, if i click the button again then gs takes the value from textbox.
View 1 Replies
Sep 2, 2010
I've got a Jquery function that I wrote which blacks out the screen after a certain amount of inactivity, creates a pop-up that allows the user to click a button to stay logged in, and logs them out (closing the application window) if they do not respond in time.
The environment is ASP.NET (VB). We don't technically use master pages, but we do have a parent page in which our header, footer and nav reside, and my Jquery code is called from that window, loaded via an IFrame.My problem is that if one is working in a child window, the parent window doesn't recognize that the system is in use, and will automatically engage at the allocated time.I've tried everything under the sun I can think of and nothing works properly. My event handler is working, and it does call the parent window function, but the timer is not being reset.
I have this function in the parent window:
<script language="javascript" type="text/javascript">
function window.reportChildActivity() {
SESSION_ALIVE = true; [code]....
View 1 Replies
May 15, 2010
I want to pass these properties:
width=800,height=800,scrollbars=yes,resizable=yes,toolbar=no,directories=no,location=no,menubar=no,s tatus=no,left=50,top=0
following two lines i am using with aspx / vb.net codebehind side to open a new browser window: want to pass above properties, is it possible?
Dim url As String = Session("gDocScanURL") & "ScanDocument.aspx?XYFileDocID=" & iDocID & ""
Response.Write("<script>var w=window.open('" + url + "'); w.focus();</script>")
View 3 Replies
Aug 6, 2010
Is it possible to get window.location.hash on the server-side code alone? [URL]
View 2 Replies
Oct 3, 2010
window.href(fileDocmodel='~/../DocTokenPass.aspx?pageopen=DocTokenPass&');
it local open
but server side not open modal window
View 2 Replies
Mar 3, 2011
What is the best way to show the server-side generated HTML (full page) into a new popup window? It should be triggered upon clicking a button (causing a postback to the server).
Edited:
The HTML content are dynamically generated in the code behind and the content is full page (<html> ... </html>). Upon clicking a button on the web page, I would like to get the generated html content and pass it to the browser and show it in a new popup window. The content will be the final result (UI) not HTML tags.
View 3 Replies
May 17, 2012
ClientScript.RegisterStartupScript(this.Page.GetType(), "", "window.open('Print.aspx','Print','scrollbars=yes,height=400,width=900');", true);
i have the above line executed on a button click but the page does not seem to appear
View 1 Replies
Feb 22, 2011
I want to use a local group to restrict access to an ASP.NET web application to local users.
I've created a Windows group (TestLocalGroup) and Windows user accounts and assigned them all to the new group. The group and accounts are on the IIS7 web server.
In my web.config, I can properly restrict access to specific users by defining the following settings...
<authentication mode="Windows" />
<authorization>
<allow users=".TestLocalUser1,.TestLocalUser2" />
<deny users="*" />
</authorization>
ut I can't seem to get it to work for the group. This code won't allow my group members access...
<authentication mode="Windows" />
<authorization>
<allow roles=".TestLocalGroup" />
<deny users="*" />
</authorization>
I don't have any "roleManager" section. Do I need that?
View 1 Replies
Jan 5, 2011
I open a popup window by client code. Now I want to do some calculation on this popup window & if it success then I want to save the calculation result in a session variable and close the window. I mean I want to click a button on popup window, it will do some calculation on server side and if it success the it will store the calculation result in a session variable and close the popup window.
View 6 Replies
May 7, 2015
How to open in new window on button click in asp.net without page refreshment ....
View 1 Replies
May 7, 2015
i am try this code to open popup window popup window is open but page is reload
asp:DropDownList ID="ddlname" runat="server" CssClass="textbox2" AutoPostBack="True" OnSelectedIndexChanged="ddlname_SelectedIndexChanged"></asp:DropDownList>
<asp:RequiredFieldValidator ID="RequiredFieldValidator4" runat="server" ErrorMessage="*" ControlToValidate="ddlname" Display="Dynamic" Font-Size="Larger" ForeColor="Red" ValidationGroup="addp" InitialValue="--Select--"></asp:RequiredFieldValidator>
protected void ddlname_SelectedIndexChanged(object sender, EventArgs e)
{
if (ddlname.SelectedValue == "New")
{
Response.Write("<script language='javascript'>window.open('AddSupplier.aspx','Popup','width=550,height=370,left=350,top=200,resizable=no')</script>");
}
i also use update panel then popup window cant open....
View 1 Replies
Mar 2, 2011
how to make a conformation on boundfield in gridview in delete ....event
View 2 Replies
Feb 3, 2010
How can i make the Popup window not movable? have a Pop-up window which i open using ShowModalDialog through code-behind using
ClientScript.RegisterStartupScript(Page.GetType(),
"a", pageOpen);
where pageOpen is a string like:-
[Code]....
i want the page to be fixed in the middle of the screen,it should not be moved or dragged by any means,How can i disable that?
View 7 Replies
Feb 25, 2011
i have an aspx page that loads and displays a text file in a broswer window and it used to work, I made no changes to it and now testing shows additional content appended below the file.
Here is the text file:
testing...
Here is what is displayed:
[Code]....
The additional output looks like the aspx page itself, which has only a close button incase the file load fails.
Here is the apsx page:
[Code]....
Here is the code:
[code]....
View 1 Replies
Feb 18, 2011
I have a DropDownList that fires off some server-side databinding in its OnSelectedIndexChanged event.
<asp:DropDownList ID="ddlGroup" runat="server"
AutoPostBack="True" OnSelectedIndexChanged="SelectGroup" />
Elsewhere in the page, some JavaScript opens a popup. When the popup is filled out and submitted, I want to use JavaScript to fire that OnSelectedIndexChanged event in the opener page. I found some other code that does something similar:
if (window.opener != null ) {
var cf = window.opener.document.forms['aspnetForm'];
if (!cf) {
cf = window.opener.document.aspnetForm;
[code]...
View 1 Replies
Mar 1, 2010
While working through some demos today I managed to trick VS 2008 somehow and I cannot access any server side events or variables in the code editor window. Hopefully
this screenshot will demonstrate exactly what I am missing. No matter what control I pick from my source I get the same drop down items overhead. What is quite weird is that when I drop new server side controls onto the source editor I can set the tag attributes for the events, but when I double click that event there is not an automatic created event handler with the same name created for me. Also, on the property pages there is no events image button (the one with the lightning bolt). The only property page items which have the events image button (lightning bolt) are the ajax toolkit controls. Already tried the "import all settings - VB Default" to blast away everything and no luck..
View 4 Replies
Apr 1, 2010
I have a popup window of course through the use of modalpopup extender that searches a record. In the popup window, I have two buttons - a search and a close button. Whenever, I click on the search buttton, the popup window immediately disappear. How am be able to make my modal popup window to stay visible even I click on the search button?
View 2 Replies
Jan 17, 2010
I'm using Modal Popup, when user click i need to get the window in center, irrespective of screen size. my screen size is 1280*780 so i adjust the x and y value in modal popup im getting the window in center,but alignment is changed on other screen size. how to make the modal popup in center in all size
View 4 Replies
Nov 23, 2010
I have a user control which contains a CustomValidator which is used according to whether a RadioButton is checked or not (there are several RadioButtons, I'm only showing the relevant one)
<asp:RadioButton runat="Server" ID="RadioBetween" GroupName="DateGroup" CssClass="date_group_options_control_radio" />
[code]...
There is some client + server side validation code (the server side code does exactly the same thing and is skipped for brevity)
<script type="text/javascript">
function ValidateDateFields_Client(source, args) [code]...
There are two instances of this control in the page. When running the client side version it hits the wrong one (the version of the control which is disabled). You can see from the generated HTML both are correctly specified. I'm not sure how .NET works out which clientside function to call given they both have the same name.
<script type="text/javascript">
//<![CDATA[
var ctl00_MCPH1_QueryTextValidator = document.all ? document.all["ctl00_MCPH1_QueryTextValidator"] : document.getElementById("ctl00_MCPH1_QueryTextValidator");
[code]...
Do i need to add something in to scope it? What's the best way to achieve this? If I disable the loading of the second control everything works fine.
View 1 Replies
Oct 26, 2012
How to call the server side method on browser window close button...
View 1 Replies
Jan 27, 2010
how to make exe file of window application in Visual web developer 2008
View 1 Replies
Jun 16, 2010
I used to have nice development environment at XP for .Net web application development. I have now installed Windows 7 and going to take it as my new machine. I already installed VS2005 and I'm able to
build a project. IIS is working fine and I'm able to open the web application in the web browser. Windows firewall is Off.When I click Start Debuggin on Visual Studio 2005 on Windows 7 I get following error:Unable to start debugging on the web server. Unable to connect to the web server. Verify that the web server is running and that incoming HTTP requests are not blocked by a firewall. What could be wrong? Something to configure in the IIS?
View 2 Replies