Ask a Question related to ASP.NET General, Design and Development.
-
Javier Ros #1
Get Form ID
hi guys,
How to know the Form ID of a Page with C# CodeBehind?
Thanks in advance.
..Javier Ros Moreno.
Javier Ros Guest
-
Autopopulated form not displaying data in pdfunless the form field is clicked
Within my online application, I have a pdf form that is auto generated and displayed to the user in the browser. My problem is that the populated... -
authenticate win32 form client with form based authentication web services
(Type your message here) -------------------------------- From: kitchai yong Hi, Can you tell me how i authenticate the win32 form client... -
#25676 [Opn->Bgs]: Form hidden input ouput when any form=* is in url_rewriter.tags
ID: 25676 Updated by: sniper@php.net Reported By: davey@php.net -Status: Open +Status: Bogus Bug... -
#25676 [Bgs->Opn]: Form hidden input ouput when any form=* is in url_rewriter.tags
ID: 25676 Updated by: davey@php.net Reported By: davey@php.net -Status: Bogus +Status: Open Bug... -
#25676 [NEW]: Form hidden input ouput when any form=* is in url_rewriter.tags
From: davey@php.net Operating system: WinXP/FreeBSD PHP version: 4CVS-2003-09-26 (stable) PHP Bug Type: Session related Bug... -
Natty Gur #2
Re: Get Form ID
Hi,
Do you mean this.ID ?
Natty Gur, CTO
Dao2Com Ltd.
28th Baruch Hirsch st. Bnei-Brak
Israel , 51114
Phone Numbers:
Office: +972-(0)3-5786668
Fax: +972-(0)3-5703475
Mobile: +972-(0)58-888377
Know the overall picture
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Natty Gur Guest
-
Javier Ros #3
Re: Get Form ID
No, this.ID (Page.ID) isn´t the form ID, i want the ID of the form generated
by the server.
..Javier Ros Moreno.
"Natty Gur" <natty@dao2com.com> escribió en el mensaje
news:OjJJsQsSDHA.2144@TK2MSFTNGP11.phx.gbl...> Hi,
>
> Do you mean this.ID ?
>
> Natty Gur, CTO
> Dao2Com Ltd.
> 28th Baruch Hirsch st. Bnei-Brak
> Israel , 51114
>
> Phone Numbers:
> Office: +972-(0)3-5786668
> Fax: +972-(0)3-5703475
> Mobile: +972-(0)58-888377
>
> Know the overall picture
>
>
> *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
> Don't just participate in USENET...get rewarded for it!
Javier Ros Guest
-
Natty Gur #4
Re: Get Form ID
Ugly solution but works:
string s;
for (int i = 0 ; i < this.Controls.Count; i++)
{
if (this.Controls[i] is System.Web.UI.HtmlControls.HtmlForm)
{
s = this.Controls[i].ID;
break;
}
}
Natty Gur, CTO
Dao2Com Ltd.
28th Baruch Hirsch st. Bnei-Brak
Israel , 51114
Phone Numbers:
Office: +972-(0)3-5786668
Fax: +972-(0)3-5703475
Mobile: +972-(0)58-888377
Know the overall picture
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Natty Gur Guest
-
Javier Ros #5
Re: Get Form ID
true, true.
thanks
"Natty Gur" <natty@dao2com.com> escribió en el mensaje
news:epRVMysSDHA.1552@TK2MSFTNGP12.phx.gbl...> Ugly solution but works:
>
> string s;
> for (int i = 0 ; i < this.Controls.Count; i++)
> {
> if (this.Controls[i] is System.Web.UI.HtmlControls.HtmlForm)
> {
> s = this.Controls[i].ID;
> break;
> }
> }
>
> Natty Gur, CTO
> Dao2Com Ltd.
> 28th Baruch Hirsch st. Bnei-Brak
> Israel , 51114
>
> Phone Numbers:
> Office: +972-(0)3-5786668
> Fax: +972-(0)3-5703475
> Mobile: +972-(0)58-888377
>
> Know the overall picture
>
>
> *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
> Don't just participate in USENET...get rewarded for it!
Javier Ros Guest



Reply With Quote

