Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeArchived Discus...Archived Discus...Developing Under Previous Versions of .NETDeveloping Under Previous Versions of .NETASP.Net 2.0ASP.Net 2.0Adding submit button.Adding submit button.
Previous
 
Next
New Post
8/17/2007 12:19 PM
 
I have created a custom module. It's simply a page that has a “gridview” displaying a bunch of data.
Now, I would like to have a search box on one of my pages and then send a search string to my new custom module.
I tried to just put into the html module. Like this:
<form action="/cint_portal/LinkClick.aspx?link=54&amp;tabid=36">
    <input name="type" type="text" /><input type="submit" value="Search" />
</form>
But when I press the submit button, it does not go to my page at all.
Does anyone know how i can do this?
 
New Post
8/17/2007 7:04 PM
 

In asp.net - you can only have ONE <form on a a page.
And that form is created by the DNN Framework.

So for starters you need to remove the <form action=  statement.

Secondly - unless you want to try manually messing around with Javascript tricks.
You should base your markup on <asp: based controls.

The <asp:Button control handles the processing of a BUTTON on a page and
the javascript needed to get the click action hadded back to your page code.

<asp:Button ID="cmdSEARCH" runat="server" Text="SEARCH" />

You then add code to your module's .vb code behind/beside file that handles the CLICK event:

 Protected Sub cmdSEARCH_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdSEARCH.Click   
     'Any code you want here
   
    Response.Redirect("cint_portal/LinkClick.aspx?link=54&amp;tabid=36", True)

End Sub

 

 
New Post
8/20/2007 9:36 AM
 

As mentioned above using a standard HTML form will not work if you are set on using standard HTML have a loot at my blog site for my article on using paypal forms inside ASP.NET applications.  (Http://www.mitchelsellers.com)


-Mitchel Sellers
Microsoft MVP, ASPInsider, DNN MVP
CEO/Director of Development - IowaComputerGurus Inc.
LinkedIn Profile

Visit mitchelsellers.com for my mostly DNN Blog and support forum.

Visit IowaComputerGurus.com for free DNN Modules, DNN Performance Tips, DNN Consulting Quotes, and DNN Technical Support Services
 
Previous
 
Next
HomeHomeArchived Discus...Archived Discus...Developing Under Previous Versions of .NETDeveloping Under Previous Versions of .NETASP.Net 2.0ASP.Net 2.0Adding submit button.Adding submit button.


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out