Click here to Skip to main content
15,920,438 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Invisible by defult Pin
Darpan Gogia18-Apr-06 23:58
Darpan Gogia18-Apr-06 23:58 
Questionnamespace? i dont see my classes? Pin
2hdass15-Apr-06 13:37
2hdass15-Apr-06 13:37 
AnswerRe: namespace? i dont see my classes? Pin
Jakob Farian Krarup15-Apr-06 20:04
Jakob Farian Krarup15-Apr-06 20:04 
Questionconfused on property Pin
MeterMan15-Apr-06 12:57
MeterMan15-Apr-06 12:57 
AnswerRe: confused on property Pin
MeterMan15-Apr-06 13:24
MeterMan15-Apr-06 13:24 
AnswerRe: confused on property Pin
Guffa15-Apr-06 15:19
Guffa15-Apr-06 15:19 
QuestionMaster Page, PostBack, and Request.Form Problem Pin
RX Maverick15-Apr-06 12:09
RX Maverick15-Apr-06 12:09 
AnswerRe: Master Page, PostBack, and Request.Form Problem Pin
Mike Ellison15-Apr-06 12:38
Mike Ellison15-Apr-06 12:38 
I would think you would want to reference the text box's Text property directly, like this:
<%@ Page Language="VB" MasterPageFile="~/MasterPage.master" Title="Title" %>
<script runat="server">
    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
        If Search_Box.Text <> "" Then
            Display_Text.Text = Search_Box.Text
        End If
    End Sub
</script>
<asp:Content ID="Content1" ContentPlaceHolderID="Main" Runat="Server">
    <asp:Label ID="Search_Text" runat="server" Text="Search:" />
    <asp:TextBox ID="Search_Box" runat="server" />
    <asp:Button ID="Search_Button" runat="server" Text="Search" /><br />
    <asp:Label ID="Display_Text" runat="server" Text="" />
</asp:Content>

GeneralRe: Master Page, PostBack, and Request.Form Problem Pin
RX Maverick15-Apr-06 13:55
RX Maverick15-Apr-06 13:55 
GeneralRe: Master Page, PostBack, and Request.Form Problem Pin
RX Maverick15-Apr-06 14:33
RX Maverick15-Apr-06 14:33 
GeneralRe: Master Page, PostBack, and Request.Form Problem Pin
Mike Ellison15-Apr-06 17:05
Mike Ellison15-Apr-06 17:05 
Questionimage uploading Pin
TAREQ F ABUZUHRI15-Apr-06 9:43
TAREQ F ABUZUHRI15-Apr-06 9:43 
QuestionSaving an uploaded file on the server?? Pin
Nada Adel15-Apr-06 8:34
Nada Adel15-Apr-06 8:34 
QuestionSession State - Persistant Class? Pin
econner15-Apr-06 7:14
econner15-Apr-06 7:14 
QuestionASP.NET Scope of Public Shared Functions Pin
CKSierrabay15-Apr-06 4:34
CKSierrabay15-Apr-06 4:34 
AnswerRe: ASP.NET Scope of Public Shared Functions Pin
Guffa15-Apr-06 5:02
Guffa15-Apr-06 5:02 
QuestionHow to fill data to DataList, DataGrid that use client side code Pin
ndkit15-Apr-06 1:57
ndkit15-Apr-06 1:57 
Questiondifference btn asp and asp.net Pin
venugopaldigital15-Apr-06 0:42
venugopaldigital15-Apr-06 0:42 
AnswerRe: difference btn asp and asp.net Pin
munklefish15-Apr-06 2:31
munklefish15-Apr-06 2:31 
AnswerRe: difference btn asp and asp.net Pin
Mike Ellison15-Apr-06 2:32
Mike Ellison15-Apr-06 2:32 
AnswerRe: difference btn asp and asp.net Pin
KaKa'17-Apr-06 17:08
KaKa'17-Apr-06 17:08 
QuestionHelp with GridView Pin
Maqsood Ahmed14-Apr-06 22:34
Maqsood Ahmed14-Apr-06 22:34 
AnswerRe: Help with GridView Pin
Mike Ellison15-Apr-06 3:19
Mike Ellison15-Apr-06 3:19 
QuestionA very good site about "GridView" Pin
PlayGirl14-Apr-06 22:26
PlayGirl14-Apr-06 22:26 
QuestionHow to use submit form in Access Database ASP.Net Pin
Murtuza Husain Miyan Patel14-Apr-06 21:38
professionalMurtuza Husain Miyan Patel14-Apr-06 21:38 

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.