Click here to Skip to main content
15,906,081 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralAccessing Control from Master Page Pin
DotNetXenon19-Dec-07 10:04
DotNetXenon19-Dec-07 10:04 
GeneralRe: Accessing Control from Master Page Pin
pmarfleet19-Dec-07 10:55
pmarfleet19-Dec-07 10:55 
GeneralProblem Calling Web Service From Production Environment Pin
AdamNThompson19-Dec-07 10:01
AdamNThompson19-Dec-07 10:01 
GeneralTransparent GIFs Pin
Monin D.19-Dec-07 9:12
Monin D.19-Dec-07 9:12 
GeneralLinq Query to sort in Column-Header in GridView Pin
Terppe19-Dec-07 5:59
Terppe19-Dec-07 5:59 
Questionhow to convert .aspx page to .pdf document in asp.net [modified] Pin
gopal_Pandey19-Dec-07 4:12
gopal_Pandey19-Dec-07 4:12 
QuestionProblem With RegisterClientScriptResource Pin
scorpion_man198219-Dec-07 3:58
scorpion_man198219-Dec-07 3:58 
GeneralRe: Problem With RegisterClientScriptResource Pin
ToddHileHoffer19-Dec-07 4:44
ToddHileHoffer19-Dec-07 4:44 
Not sure what your problem is... I use the following.

  public void AddJavascript(string javascriptUrl)<br />
        {   //This method adds the JavaScript File to the page<br />
            HtmlGenericControl script = new HtmlGenericControl("script");<br />
            script.Attributes.Add("type", "text/javascript");<br />
            script.Attributes.Add("src", ResolveUrl(javascriptUrl));<br />
            this.Page.Header.Controls.Add(script);<br />
        }<br />
<br />
 protected void Page_Load(object sender, EventArgs e)<br />
        {<br />
AddJavascript("~/Scripts/ImageRight.js");<br />
}


I didn't get any requirements for the signature


GeneralRe: Problem With RegisterClientScriptResource Pin
scorpion_man198219-Dec-07 9:46
scorpion_man198219-Dec-07 9:46 
GeneralRe: Problem With RegisterClientScriptResource Pin
ToddHileHoffer20-Dec-07 1:22
ToddHileHoffer20-Dec-07 1:22 
GeneralGC.Collect question Pin
V.19-Dec-07 3:45
professionalV.19-Dec-07 3:45 
GeneralRe: GC.Collect question Pin
Paddy Boyd19-Dec-07 3:56
Paddy Boyd19-Dec-07 3:56 
GeneralRe: GC.Collect question Pin
V.19-Dec-07 4:18
professionalV.19-Dec-07 4:18 
GeneralRe: GC.Collect question Pin
ToddHileHoffer19-Dec-07 4:37
ToddHileHoffer19-Dec-07 4:37 
GeneralRe: GC.Collect question Pin
V.19-Dec-07 4:45
professionalV.19-Dec-07 4:45 
GeneralRe: GC.Collect question [modified] Pin
ToddHileHoffer19-Dec-07 4:57
ToddHileHoffer19-Dec-07 4:57 
GeneralRe: GC.Collect question Pin
Paddy Boyd19-Dec-07 5:09
Paddy Boyd19-Dec-07 5:09 
GeneralRe: GC.Collect question Pin
V.19-Dec-07 5:13
professionalV.19-Dec-07 5:13 
GeneralRe: GC.Collect question Pin
Paddy Boyd19-Dec-07 5:17
Paddy Boyd19-Dec-07 5:17 
GeneralRe: GC.Collect question Pin
V.19-Dec-07 5:25
professionalV.19-Dec-07 5:25 
GeneralRe: GC.Collect question Pin
ToddHileHoffer19-Dec-07 7:08
ToddHileHoffer19-Dec-07 7:08 
GeneralRe: GC.Collect question Pin
V.19-Dec-07 20:44
professionalV.19-Dec-07 20:44 
GeneralSys.Application / Javascript / Remove Extenders Pin
Malcolm Smart19-Dec-07 3:21
Malcolm Smart19-Dec-07 3:21 
Questionhow to retrive data from dataset Pin
biswa4719-Dec-07 2:54
biswa4719-Dec-07 2:54 
GeneralRe: how to retrive data from dataset Pin
Abhijit Jana19-Dec-07 3:59
professionalAbhijit Jana19-Dec-07 3:59 

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.