Web Forms :: Creating A Small Pop-up Window?
Jun 2, 2010
Here is the general idea of what I am trying to accomplish.Upon page load of the aspx, I am dynamically creating a table (that is populated by database information), one of the columns in the table will display a "NotePad" image. When selecting this image, I need it to make a borderless small window pop up with a blank text box inside of it. The user will be writing notes and information in this text box and then selecting a close window button below it to return to the main page. I need to make this as seamless and fluid as possible, so much so that the pop up needs to look like it was still part of the main page when launched. I also will need to require that the user must close the pop up window before returning to the main screen as well.
Using VB.NET, Is there any way to create a pop up window when a specific cell is clicked on (On Click event) , that will display a small (set size) pop up window with it's border but no titlebar, status, menu, etc. That requires the user to click the close button (provided below the textbar) to return to the main screen?I have found numerous posts on pop-ups, title bars, etc, but none have been much help when I try to put it all together.
View 36 Replies
Similar Messages:
Feb 21, 2011
I want to open a smaller internet window to show some data that is to large to go in the calendar control. I found the code below, but it says the following error:It puts a blue line under the last part: </script>" and says the error below. What am I doing wrong and is there any other way to accomplish this task?
Error 5
Statement cannot appear within a method body. End of method assumed.
View 4 Replies
Jan 28, 2011
I have a .aspx page (it is a content form). When I click on a button on that page, I want to invoke another .aspx page in a small window. I want to display a grid in that small .aspx page.
View 4 Replies
Mar 15, 2011
I have a webpage that I would like to add a onclick event, that when a "add" button is clicked, a new, but small window pops open. In that window will be a few text fields. And when the user clicks save, the data entered in the text fields will be inserted into my database, the popup window will close, and the original page will post back to reflect the newly entered data. I know I'm not the first to want something like this, but I can't think how to do this. Is this part of the Ajax Control Toolkit?
View 1 Replies
Jun 23, 2010
When i create a sql script in the Query Builder (going through the wizard in a DataSet) the Query Builder window is to small for me. Is there a way to maximize this window by default?PS, I have previously posted this in the forum "Visual Studio 2008.
View 2 Replies
Feb 10, 2011
I am creating my application in asp.net 3.5. I have to make my Data Access layer, in which I am doing the traditional method of fetching/updating the data. Which is SqlConnection than SQLCommand, than SQLadapter. Will there be any other way I can create my DAL layer easily.
Specification.
My website is small. Approx 7-10 pages. Database has around 80 tables.
What I know:
Linq to SQL - I don't want to use it because I am not fully aware about the LINQ statement and I need to develop the application really fast. [3 days :-( ]. Also, there are 100% chances that the table structure will be altered in future. Enterprise Library: It will take too much time for me to integrate to my application.
View 4 Replies
Jul 3, 2010
What's the best way to create a pop-up like modal window that shows upon clicking the Select button in GridView?
<asp:CommandField ShowSelectButton="true" ButtonType="Button" SelectText="Select Me" />
Also, bonus if you know how to implement this via jQuery.
View 1 Replies
Aug 26, 2010
I'm using AjaxControl Toolkit.
I want to Creat a window which should Display when i run my page.
Window should contain 3 inner windows two side by side and one is below them.
I'm trying with modolPopup Extender.
I have plced 3 panels in side the PopUp panel. But i'm not able to place two panels Side by side..
View 3 Replies
Oct 18, 2010
i have an aspx page in which a link in the grid view opens a popup page . the data in the grid view would be dynamic and i need to send the id of the row of grid while calling the child window. i get the id using sender.id, but how would i send this using window .open()?
View 2 Replies
Jan 28, 2010
i have following datalist in WhatsNews.aspx page.
[Code]....
when i open home page and click a link in whatsnew section, IE 8 opening the links in a new window.but firefox 3.5.7 opens in parant window, just like i want.how can i make IE 8 also open the links in parent window?
View 3 Replies
Sep 25, 2010
I am trying to return true or false from popup window to the parent window. Actually the parent window has a button control, which on click popup another window. The popup window holds some emailing data and a button "send". This "send" button onclick send email. Now I want to return true if the email is successfully sent otherwise false, to the parent window. Depending on returning value a label present on parent window displays a text message. But I am not able to implement it. Because it might happen that the popup window is blocked by web-browsers popup blocker or popup window is accidentally closed by user. So how can I confirm to parent window whether or not the email is successfully sent?
View 5 Replies
Nov 17, 2010
i have a page Parent.aspx,, and this is responsible to open the window as a model dialog(model.apsx). model.apsx has OK button when we click on this button then server side method called to save the data. while saving the data it return the id of saved data. i need this id on my Parent.aspx.Cs file, so how can i get this id on my Parent.aspx.cs file?
View 5 Replies
Mar 10, 2011
I have a login page that is loaded in popup window (colorbox) and after user logs in it should be closed and parent window should be loaded with new page.
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
Do While reader.Read()
If Trim(reader("ZAP").ToString()) = Trim(textBoxZap.Text) Then
Session("A") = "1"
Response.Redirect("~/default.aspx")
Else
lblErr.Text = "incorect"
End If
Loop
So once the buton is clicked and user name and password is corect popup window should be closed and user redirected to default aspx.
View 1 Replies
Feb 22, 2011
I have a page (parent) that open up a popup window using window.open javascript. User will then work on the popup window and the result will be stored in a session variable. When the user close the popup window, how can I put the value of the session variable back to the server control textbox of the parent window?
View 3 Replies
Apr 28, 2010
I am trying to open a popup window from main window using window.open() method. How to get back the value from the called popup window to the calling window in vb.net, basically i need to get back the value and populate in the text box available in the main window.
View 3 Replies
Apr 29, 2010
I have a page wich opens a popup window. I want to pass some variables, like some textbox.text and 2 dataTables from parent window to the popup window. And then I'll have to return some vars from popup window to parent window. So what is the best way to do this,
1) using Sessions("")
or
2)passing the variables as parameteres:
LinkButton1.Attributes.Add("onclick", "window.open('popup.aspx?field1=" & value1 & "&field2=" & value2 & ......
I don't know if it's appropiated passing 8 or 10 variables as the option2 because the user will see a very long url with all the variables, but maybe is more efficient than using Sessions.... Anyway, could somebody clear me up?
View 12 Replies
Feb 15, 2011
I am using a master page in my project. I opened a popup window from content page. What I want to do is, when I close the popup window, the data in the textbox available in popup should be assigned to a text box in parent form. But I dont want to refresh the parent window when I close the popup window. Can any one tell me how can I access textbox in a parent window from a popup window without refreshing the screens.
View 3 Replies
Oct 22, 2010
Im having the flowwing problem i have a gridview that i want to list many records when i click on a row iwant to be able to click on a button and go to the form of this record in order to update it. All the navigation works fine.I click on the button and then using javascript i window.open the page that has the form the problem is that when the new page loads the parent page (the page that has the gridview refreshes and because there are many records it is really annoying how can i use window open to pop up a child page without having the parent window to refresh.
Because im using all this in a dotnetnuke framework i have tried enabling and disabling partial rendering to the parent page page but always refreshes when i open the child window
View 2 Replies
May 14, 2010
I have created an intranet application in ASP. From my main web page I am opening a web browser window and adding a record to database from that new window. Now on close of that window I want to refresh my main web page to reflect the database changes. My backend is "ms access" Also on the other hand I also want to disable the closing button of web browser.
View 2 Replies
Mar 18, 2010
I have to develope on popup page which is popout from parent page,popup page have one grid with radio button,according to selection of particular radio button of gridview row and user click on select button popup should close and on parent page we have ID value of selected row of popup page.
According that ID value i have to fill some details in Parent page.
Popup
Name Email
RBT ABC A@yahoo.com
RBT DEF B@yahoo.com
SELECT BUTTON
So my query is how to close popup on select button and pass checked row id value to parent page and on parent page how can we get that id value and display some details.
View 2 Replies
Jan 10, 2010
How can I as passing a data from a active window to another window.
View 5 Replies
Sep 28, 2010
i am making one web site(online test),now i want to give some time limit to answer the questions,like 10 min.how can i make a timer with 10 min in .net to show the time in label control..
View 2 Replies
Mar 29, 2011
The below is a very simple application to get live data from a website and put the required response in a checklistbox.
In the httpwebresponseresponse, what I need is the value before ">scorecard<", starting from <td> till <a. There fore for the below text, I will have four items(there are four >scorecard<) added to my Checkedlistbox1
[code]....
View 1 Replies
Feb 12, 2010
How do I pass a window name to window.open(url, windowname) programmatically? I am using a user control inside aspx forms. I want the windowname to be different, so from each link a separate window opens.
I have an asp:hyperlink in a .ascx form. The code looks like this:
<asp:hyperlink runat="server" id="xx", navigateurl="is set programmatically" onclick="javascrip:return popup(this, 'my window'; " text="xxx"/>
'my window' needs to be a variable.
View 3 Replies
Aug 26, 2010
I have an aspx page which contains a user control(a gridview). When I click on a link button in the gridview, I will open a popup window(An aspx page) successfully. When I click on save button in the popup, I am saving the details and refreshing the parent page successfully. I have a button in popup window. My requirement is:
When I click on the button inside popup window1, I would like to open another popup(aspx)(Say popup window2) in a new window without closing popup window1. When I save some changes in popup window2 and click on save button in popup window2, I need to close it and refresh popup window1.
View 2 Replies