I have web application in that i am using tabbed interface control in this i have create 4 tabs in each tab having a .aspx application,so each application having the
"required field validators" when i click a button in tab2 page it check the validations all the tabbed apllication.How can i solve this problem please help me..
The reason this is happening is because your tab is submitting your form, causing the javascript to fire on the validators. A simple fix would be to have the link not submit anything and simply redirect to a new page.
Related
I have a modal pop up extender which contains a gridview that loads all location, the user can open this pop up form to select a location and used for searching purposes. 4 pages in my website project will be needing the same form for searching, instead of creating the same individual form per page, can i use the created modal pop up extender form by just calling it from different pages? are there ways to do that?
I am thinking of putting it in a master page, but do not have an exact method or ways on how to do it.
Any help will very much appreciated! thanks in advance
I'm fairly new to programming and the .net framework, I'm trying to create a registration page that would require users to move from one step to another. There would be a button at the bottom of each page that takes the user to the next page, however is there a way I can do this without haveing to create multiple pages. I've tried creating multiple forms in the asp.net page but i can't add server controls to the other forms as they don't have the attribute "runat='server'".
Please help, how do i go about it?
Several ways you can accomplish this:
Put each section in its own div and use javascript to show/hide each section
Put each section in its own asp:Panel and show/hide each section on postback
Put each section in its own page and capture postback from previous page on the next page
Use the ASP.NET Wizard control: http://msdn.microsoft.com/en-us/library/w7dyf6b5%28v=vs.100%29.ASPX
Using Jquery you can get multiple page form facility.......
https://www.mindstick.com/forum/33822/how-to-use-jquery-steps-form-in-asp-dot-net
Hey guys I have this page :
PS: this is temp data, so it don't look so good ;P
Now if I click on that filter button, I want a popup window or radio buttons to show in the application bar, is that even possible? Or should I try another way of doing this?
As you choose a radio button I am going to have the page filter on the choice made, so I can't leave the page to go make a choice. Any help/link/tutorial will be appreciated :)
Thanks in advance,
Working on windows phone 8/ silverlight / c# ...
You can't have a radio button in the app bar.
I would implement this as a separate page and update your filter when you navigate back to this page. The page instance and view model will be still in memory so it should be a matter of detecting the back navigation in OnNavigatedTo and applying your filter at that point. Sharing a ViewModel between this page and your filter page would be the best way of communicating the filter value, but that's not the only way.
Is there TAB control and how to open page2 from button click ?
On asp.net ?
I work with C# and Visual Studio 2008 and ASP.NET
Thanks in advance
The standard ASP.NET controls that ship with the .NET Framework do not include a tab control. However you can find a number of implementations on the internet, I would suggest you look the jQuery UI.
As for the button click redirecting to page2 you can handle the button click event on the server side and use a Response.Redirect("page2.aspx") to redirect the users browser to the desired page. Other alternatives exist like using an anchor (link) which will request the second page directly.
Set the SelectedTab property to the index of the tab you want to display in the click event of your button.
I have a silverlight navigation application, and I thought it would be no problem to add a page that's not part of the "navigation" app. What I would like to do is move the user from the application to a new "fullscreen" page where there's only a text covering the page saying, thanks for using....... click here to login again, and that will take the user back to my already implemented login page.
The question is how can I implement a page that's not part of the user, then I guess all I need to do is navigationservice.navigate(..)
Thanks
I believe that if you add the new page as a "Silverlight User Control" instead of a "Silverlight Page" from the Visual Studio Silverlight templates you will get the results you are looking for.