Ask a Question related to ASP.NET General, Design and Development.
-
Manan #1
Post back
hello all,
I have a simple question. on my .aspx page I have bunch of
textbox, and dropdowns. One of the dropdown2 has postback
= true. When the user selects an item, the brower will
post back to the server. My problem is I only wants the
browser will post back to the server if (textbox1,
textbox2, and dropdown1) are not null values. I have a
javascript that checks for the null value for textbox1,
textbox2, and dropdown1. how can i do in client-side,
postback occurs only if certain fields are not blank.
Please let me know if u have any suggestion or any
examples that help..
Thanks
manan
Manan Guest
-
post back event in server control
how do I get the button event recognized in the post back from a server control ?? ========code============= Public Class MyButton Inherits... -
post the result back to same page??
<html> <body> <Form action="calc.asp" method="post" name="calc"> <P>NUM1: <input type="text" name="num1"> <P>NUM2: <input type="text"... -
How to Capture Control Initaited the Post Back.
Here is my problem, I am using 3 user controls in a page(Test.aspx) which are 1.Header UC 2.Body UC 3.Footer UC HeaderUC has a DropDownList... -
Post back and control focus issues
Hi, This might help : http://www.developer.com/net/asp/article.php/2237431 Natty Gur, CTO Dao2Com Ltd. 28th Baruch Hirsch st. Bnei-Brak... -
post back doesn't work
On Tue, 22 Jul 2003 20:01:44 -0400, "shimonsim@talamus.com" <estshim@att.net> wrote: I bet you have somewhere in that form an html submit... -
Swanand Mokashi #2
Re: Post back
use validation controls and set the CausesValidation to true for the
control that has AutoPostBack.
Validate in the validation control what you want to be not null.
--
Swanand Mokashi
Microsoft Certified Professional
[url]http://www.swanandmokashi.com/[/url]
Home of the Stock Quotes, Quote of the day and Horoscope web services
"Manan" <anand125@hotmail.com> wrote in message
news:1b3901c352be$183ab3b0$a001280a@phx.gbl...> hello all,
>
> I have a simple question. on my .aspx page I have bunch of
> textbox, and dropdowns. One of the dropdown2 has postback
> = true. When the user selects an item, the brower will
> post back to the server. My problem is I only wants the
> browser will post back to the server if (textbox1,
> textbox2, and dropdown1) are not null values. I have a
> javascript that checks for the null value for textbox1,
> textbox2, and dropdown1. how can i do in client-side,
> postback occurs only if certain fields are not blank.
> Please let me know if u have any suggestion or any
> examples that help..
>
>
>
> Thanks
> manan
>
Swanand Mokashi Guest



Reply With Quote

