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

ASP.NET

 
QuestionDataGrid Label problem ?? Pin
nabeelkhan1-Aug-06 1:33
nabeelkhan1-Aug-06 1:33 
AnswerRe: DataGrid Label problem ?? Pin
ToddHileHoffer1-Aug-06 2:12
ToddHileHoffer1-Aug-06 2:12 
AnswerRe: DataGrid Label problem ?? Pin
dansoft1-Aug-06 2:15
dansoft1-Aug-06 2:15 
QuestionQuery: Closing and Killing the Excel.exe from the processor Pin
Selvaraj Anantha Raman1-Aug-06 1:08
Selvaraj Anantha Raman1-Aug-06 1:08 
AnswerRe: Query: Closing and Killing the Excel.exe from the processor Pin
ToddHileHoffer1-Aug-06 2:17
ToddHileHoffer1-Aug-06 2:17 
GeneralRe: Query: Closing and Killing the Excel.exe from the processor Pin
RichardGrimmer2-Aug-06 7:51
RichardGrimmer2-Aug-06 7:51 
QuestionGetting client ID of server side control Pin
Malcolm Smart1-Aug-06 0:52
Malcolm Smart1-Aug-06 0:52 
AnswerRe: Getting client ID of server side control Pin
Malcolm Smart1-Aug-06 2:07
Malcolm Smart1-Aug-06 2:07 
Simple Angel - just register some client side script and then call the function you've registered when you need it!

private void AddSaveButton()
    {
        Button btn = new Button();

        btn.ID = "savebutton";
        btn.Enabled = false;
        btn.Text = "save modified jobs";
        btn.Attributes.Add("Name", "hello");
        btn.Command += new CommandEventHandler(SaveChanges);
        btn.CommandName = "SaveChanges";

        mode.Controls.Add(btn);
<font color=red>
        Page.ClientScript.RegisterStartupScript(GetType(), "saveScript",
        String.Format("function EnableSave( isDisabled )"+
                        "{{ var saveButton = document.getElementById(\"{0}\");"+
                        "saveButton.disabled=isDisabled;}}", btn.ClientID), true);</font>
    }


It doesn't get much better than answering your own questions...until somebody comes along and blows your solution out of the water.

I'm waiting...

Regards

Angel
*********************************************
The sooner you fall behind, the longer you have to catch up.

QuestionSharepoint RPCs, Pin
nicolas.alonzo1-Aug-06 0:44
nicolas.alonzo1-Aug-06 0:44 
AnswerRe: Sharepoint RPCs, Pin
nicolas.alonzo2-Aug-06 0:07
nicolas.alonzo2-Aug-06 0:07 
QuestionSending Mail in Dot Net Pin
aaraaayen1-Aug-06 0:44
aaraaayen1-Aug-06 0:44 
AnswerRe: Sending Mail in Dot Net Pin
_AK_1-Aug-06 0:53
_AK_1-Aug-06 0:53 
AnswerRe: Sending Mail in Dot Net Pin
Tim Kohler1-Aug-06 2:59
Tim Kohler1-Aug-06 2:59 
AnswerRe: Sending Mail in Dot Net Pin
eggsovereasy1-Aug-06 4:29
eggsovereasy1-Aug-06 4:29 
QuestionHi, Text_Changed please Pin
Mohammed Amine1-Aug-06 0:34
Mohammed Amine1-Aug-06 0:34 
AnswerRe: Hi, Text_Changed please Pin
Ista3-Aug-06 3:06
Ista3-Aug-06 3:06 
QuestionImageButton in datagrid Pin
ewhizz1-Aug-06 0:29
ewhizz1-Aug-06 0:29 
AnswerRe: ImageButton in datagrid Pin
_AK_1-Aug-06 0:42
_AK_1-Aug-06 0:42 
GeneralRe: ImageButton in datagrid Pin
ewhizz1-Aug-06 0:48
ewhizz1-Aug-06 0:48 
GeneralRe: ImageButton in datagrid Pin
_AK_1-Aug-06 0:52
_AK_1-Aug-06 0:52 
GeneralRe: ImageButton in datagrid Pin
ewhizz1-Aug-06 0:58
ewhizz1-Aug-06 0:58 
GeneralRe: ImageButton in datagrid Pin
_AK_1-Aug-06 1:04
_AK_1-Aug-06 1:04 
GeneralRe: ImageButton in datagrid [modified] Pin
ewhizz1-Aug-06 2:23
ewhizz1-Aug-06 2:23 
GeneralRe: ImageButton in datagrid Pin
_AK_1-Aug-06 2:34
_AK_1-Aug-06 2:34 
GeneralRe: ImageButton in datagrid Pin
ewhizz1-Aug-06 2:41
ewhizz1-Aug-06 2:41 

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.