Click here to Skip to main content
15,888,351 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: .NET 2.0, forms authentication Pin
eggsovereasy12-Jul-06 6:47
eggsovereasy12-Jul-06 6:47 
QuestionPascals Triangle aspx Pin
yushkoya12-Jul-06 5:47
yushkoya12-Jul-06 5:47 
AnswerRe: Pascals Triangle aspx Pin
Dustin Metzgar12-Jul-06 6:03
Dustin Metzgar12-Jul-06 6:03 
GeneralRe: Pascals Triangle aspx Pin
yushkoya13-Jul-06 1:25
yushkoya13-Jul-06 1:25 
QuestionValidation does not work inside MultiView control Pin
Alexander Turlov12-Jul-06 5:30
Alexander Turlov12-Jul-06 5:30 
AnswerRe: Validation does not work inside MultiView control Pin
minhpc_bk12-Jul-06 15:49
minhpc_bk12-Jul-06 15:49 
QuestionRe: Validation does not work inside MultiView control Pin
Alexander Turlov14-Jul-06 4:00
Alexander Turlov14-Jul-06 4:00 
AnswerRe: Validation does not work inside MultiView control Pin
shukraj.khadse23-Aug-10 2:50
shukraj.khadse23-Aug-10 2:50 
I am using Multiview control for displaying tab on my page . here I am writing the code for validation of each tab on my page

I have menu item control as well( i.e TabMenu) to display the tab. on clicking the tab it will validate the current tab







protected void TabMenu_MenuItemClick(object sender, MenuEventArgs e)
{


int nextTabIndex = Int32.Parse(e.Item.Value);

// here TabMultiView is my multiview control
for (int index = 0; index < TabMultiView.Views.Count; index++)
{
TabMultiView.ActiveViewIndex = index;
if (index != nextTabIndex)
{

// here ValidationGroup is the name of validationgroup in my validation control ex: <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="Login_x0020_Name" ValidationGroup="ValidationGroup" ErrorMessage="Enter Value"></asp:RequiredFieldValidator>

Page.Validate("ValidationGroup");
if (!Page.IsValid) { return; }
}
}

}







its working perfect

if you have any query regarding this blog please let me know..
Cheers Guys....


Life to Set Hai Boss.......

Shukraj Khadse
Software Engg
Datamatics Global Services
Andheri, Mumbai
QuestionPlease Help Pin
vaskar sarma12-Jul-06 3:57
vaskar sarma12-Jul-06 3:57 
AnswerRe: Please Help Pin
Guffa12-Jul-06 4:25
Guffa12-Jul-06 4:25 
Questionproblem regarding datagrid Pin
ashokyamsani12-Jul-06 3:52
ashokyamsani12-Jul-06 3:52 
AnswerRe: problem regarding datagrid Pin
Paddy Boyd12-Jul-06 4:53
Paddy Boyd12-Jul-06 4:53 
QuestionHow can I pass arraylists to other forms Pin
bluewavestrider12-Jul-06 2:33
bluewavestrider12-Jul-06 2:33 
AnswerRe: How can I pass arraylists to other forms Pin
postmaster@programmingknowledge.com12-Jul-06 3:08
postmaster@programmingknowledge.com12-Jul-06 3:08 
GeneralRe: How can I pass arraylists to other forms Pin
bluewavestrider12-Jul-06 4:38
bluewavestrider12-Jul-06 4:38 
GeneralRe: How can I pass arraylists to other forms Pin
Paddy Boyd12-Jul-06 5:08
Paddy Boyd12-Jul-06 5:08 
GeneralRe: How can I pass arraylists to other forms Pin
Not Active12-Jul-06 4:59
mentorNot Active12-Jul-06 4:59 
AnswerRe: How can I pass arraylists to other forms Pin
Not Active12-Jul-06 5:01
mentorNot Active12-Jul-06 5:01 
QuestionI just observed !!! Pin
cloudking1196612-Jul-06 2:10
cloudking1196612-Jul-06 2:10 
AnswerRe: I just observed !!! Pin
bluewavestrider12-Jul-06 2:42
bluewavestrider12-Jul-06 2:42 
QuestionSQL ASP/VB connection Strings Pin
Taterface12-Jul-06 1:38
Taterface12-Jul-06 1:38 
AnswerRe: SQL ASP/VB connection Strings Pin
mr_lasseter12-Jul-06 2:58
mr_lasseter12-Jul-06 2:58 
GeneralRe: SQL ASP/VB connection Strings Pin
Taterface12-Jul-06 6:07
Taterface12-Jul-06 6:07 
GeneralRe: SQL ASP/VB connection Strings Pin
mr_lasseter12-Jul-06 6:55
mr_lasseter12-Jul-06 6:55 
QuestionAsp Pages on differnert resolution Pin
ayazsb12-Jul-06 1:29
ayazsb12-Jul-06 1:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.