Click here to Skip to main content
15,886,103 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: how i get the ip address of client machine Pin
Herman<T>.Instance26-Mar-09 4:35
Herman<T>.Instance26-Mar-09 4:35 
Questionpagination through dataset Pin
bikash pattanayak26-Mar-09 3:18
bikash pattanayak26-Mar-09 3:18 
AnswerRe: pagination through dataset Pin
Yusuf26-Mar-09 3:27
Yusuf26-Mar-09 3:27 
AnswerRe: pagination through dataset Pin
Vimalsoft(Pty) Ltd26-Mar-09 4:06
professionalVimalsoft(Pty) Ltd26-Mar-09 4:06 
AnswerRe: pagination through dataset Pin
Blue_Boy26-Mar-09 4:07
Blue_Boy26-Mar-09 4:07 
QuestionDrop down list selected value changed Pin
scar_face26-Mar-09 2:26
scar_face26-Mar-09 2:26 
AnswerRe: Drop down list selected value changed Pin
mr_muskurahat26-Mar-09 2:35
mr_muskurahat26-Mar-09 2:35 
AnswerRe: Drop down list selected value changed Pin
tech60326-Mar-09 14:08
tech60326-Mar-09 14:08 
Here is an example of how it can be done. On the main page i have a label that reads the value of the dropdownlist and once the dropdownlist updates it re-populates the label.

the main page

<asp:label id="Label1" runat="server" xmlns:asp="#unknown"></asp:label><br />
    <asp:dropdownlist id="DropDownList1" autopostback="true" runat="server" xmlns:asp="#unknown">
    <asp:listitem value="Update1">Update1</asp:listitem>
    <asp:listitem value="Update2">Update2</asp:listitem></asp:dropdownlist>


and the code behind

protected void Page_Load(object sender, EventArgs e)
     {
         Label1.Text = DropDownList1.SelectedValue;

     }


This is a quick example just to point you in the right direction. Hope it helps.

Matthew Vass
QA Analyst
mvass@hostmysite.com
HostMySite.com

AnswerRe: Drop down list selected value changed Pin
nish11126-Mar-09 21:05
nish11126-Mar-09 21:05 
Questionnot working in server Convert wmv file to flv file Pin
vnsraj26-Mar-09 1:55
vnsraj26-Mar-09 1:55 
AnswerRe: not working in server Convert wmv file to flv file Pin
Yusuf26-Mar-09 3:30
Yusuf26-Mar-09 3:30 
Questionhow to minimize asp.net page size? Pin
dev sheoran26-Mar-09 0:57
dev sheoran26-Mar-09 0:57 
AnswerRe: how to minimize asp.net page size? Pin
Abhijit Jana26-Mar-09 1:35
professionalAbhijit Jana26-Mar-09 1:35 
GeneralRe: how to minimize asp.net page size? Pin
dev sheoran26-Mar-09 2:00
dev sheoran26-Mar-09 2:00 
Questionsteps for creating Web Service Pin
Ratnadeep_Raul26-Mar-09 0:20
Ratnadeep_Raul26-Mar-09 0:20 
AnswerRe: steps for creating Web Service Pin
Abhijit Jana26-Mar-09 1:40
professionalAbhijit Jana26-Mar-09 1:40 
GeneralRe: steps for creating Web Service Pin
Ratnadeep_Raul26-Mar-09 2:06
Ratnadeep_Raul26-Mar-09 2:06 
GeneralRe: steps for creating Web Service Pin
Abhijit Jana26-Mar-09 2:27
professionalAbhijit Jana26-Mar-09 2:27 
Questioninitiate workflow programatically ASP.NET using VB [modified] Pin
Ratnadeep_Raul26-Mar-09 0:16
Ratnadeep_Raul26-Mar-09 0:16 
QuestionThe object must implement IConvertible Pin
foryou26-Mar-09 0:01
foryou26-Mar-09 0:01 
AnswerRe: The object must implement IConvertible Pin
Blue_Boy26-Mar-09 0:17
Blue_Boy26-Mar-09 0:17 
GeneralRe: The object must implement IConvertible Pin
foryou26-Mar-09 0:27
foryou26-Mar-09 0:27 
GeneralRe: The object must implement IConvertible Pin
Blue_Boy26-Mar-09 0:30
Blue_Boy26-Mar-09 0:30 
QuestionMenu Control with double functionality needed.... Pin
urvipin25-Mar-09 23:57
urvipin25-Mar-09 23:57 
AnswerRe: Menu Control with double functionality needed.... Pin
annapurna.tiwari26-Mar-09 1:10
annapurna.tiwari26-Mar-09 1:10 

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.