Click here to Skip to main content
15,914,413 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: [Message Deleted] Pin
Abhijit Jana30-Sep-09 20:47
professionalAbhijit Jana30-Sep-09 20:47 
QuestionSetting value of HiddentField server side while using UpdatePanel Pin
Ramon Enachescu30-Sep-09 16:34
Ramon Enachescu30-Sep-09 16:34 
AnswerRe: Setting value of HiddentField server side while using UpdatePanel Pin
N a v a n e e t h30-Sep-09 17:42
N a v a n e e t h30-Sep-09 17:42 
GeneralRe: Setting value of HiddentField server side while using UpdatePanel Pin
Ramon Enachescu30-Sep-09 18:00
Ramon Enachescu30-Sep-09 18:00 
Questionwrap string in a gridview column Pin
eirikr130-Sep-09 13:10
eirikr130-Sep-09 13:10 
AnswerRe: wrap string in a gridview column Pin
Kannan Ar30-Sep-09 15:44
professionalKannan Ar30-Sep-09 15:44 
QuestionCustom Composite Server Control Children not visible to the designer Pin
SlingBlade30-Sep-09 12:23
SlingBlade30-Sep-09 12:23 
AnswerRe: Custom Composite Server Control Children not visible to the designer Pin
Christian Graus30-Sep-09 13:03
protectorChristian Graus30-Sep-09 13:03 
GeneralRe: Custom Composite Server Control Children not visible to the designer Pin
SlingBlade30-Sep-09 13:12
SlingBlade30-Sep-09 13:12 
AnswerRe: Custom Composite Server Control Children not visible to the designer Pin
N a v a n e e t h30-Sep-09 17:28
N a v a n e e t h30-Sep-09 17:28 
GeneralRe: Custom Composite Server Control Children not visible to the designer Pin
SlingBlade30-Sep-09 17:50
SlingBlade30-Sep-09 17:50 
GeneralRe: Custom Composite Server Control Children not visible to the designer Pin
N a v a n e e t h30-Sep-09 17:59
N a v a n e e t h30-Sep-09 17:59 
GeneralRe: Custom Composite Server Control Children not visible to the designer Pin
SlingBlade30-Sep-09 18:02
SlingBlade30-Sep-09 18:02 
QuestionFileUpload doesnt upload Pin
Wouter Coinless30-Sep-09 10:35
Wouter Coinless30-Sep-09 10:35 
AnswerRe: FileUpload doesnt upload Pin
Abhishek Sur30-Sep-09 10:48
professionalAbhishek Sur30-Sep-09 10:48 
GeneralRe: FileUpload doesnt upload Pin
Wouter Coinless30-Sep-09 11:08
Wouter Coinless30-Sep-09 11:08 
GeneralRe: FileUpload doesnt upload Pin
Abhishek Sur30-Sep-09 11:44
professionalAbhishek Sur30-Sep-09 11:44 
Oh, the button is within a Panel. Use this Solution then :

ScriptManager scr = ScriptManager.GetCurrent(this.Page);
if (scr != null)
{
    scr.RegisterPostBackControl(this.mycontrol.FindControl("test"));
}


Place this script inside the Page_Load section.

Now click on the Button test and see if the Onclick event inside the Usercontrol gets fired with file in the FileUpload control.
Big Grin | :-D Big Grin | :-D

Abhishek Sur

My Latest Articles
Create CLR objects in SQL Server 2005
C# Uncommon Keywords
Read/Write Excel using OleDB

Don't forget to click "Good Answer" if you like to.

GeneralRe: FileUpload doesnt upload Pin
Wouter Coinless30-Sep-09 22:04
Wouter Coinless30-Sep-09 22:04 
GeneralRe: FileUpload doesnt upload Pin
Abhishek Sur30-Sep-09 22:26
professionalAbhishek Sur30-Sep-09 22:26 
Questionhow can i pass a vdUser to either UpdateCommand or UpdateParameters Pin
eirikr130-Sep-09 5:40
eirikr130-Sep-09 5:40 
AnswerRe: how can i pass a vdUser to either UpdateCommand or UpdateParameters Pin
Abhishek Sur30-Sep-09 10:20
professionalAbhishek Sur30-Sep-09 10:20 
GeneralRe: how can i pass a vdUser to either UpdateCommand or UpdateParameters Pin
eirikr130-Sep-09 12:48
eirikr130-Sep-09 12:48 
GeneralRe: how can i pass a vdUser to either UpdateCommand or UpdateParameters Pin
Abhishek Sur30-Sep-09 21:36
professionalAbhishek Sur30-Sep-09 21:36 
QuestionNeed help [modified] Pin
kuduva30-Sep-09 4:07
kuduva30-Sep-09 4:07 
AnswerRe: Need help Pin
Abhijit Jana30-Sep-09 4:23
professionalAbhijit Jana30-Sep-09 4:23 

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.