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

ASP.NET

 
AnswerRe: Problem with Grid-multi view Pin
Bassam Saoud4-Nov-09 5:51
Bassam Saoud4-Nov-09 5:51 
GeneralRe: Problem with Grid-multi view Pin
sris 4266-Nov-09 21:36
sris 4266-Nov-09 21:36 
QuestionCalling javascript for ASP textbox... Pin
greendragons4-Nov-09 3:53
greendragons4-Nov-09 3:53 
AnswerRe: Calling javascript for ASP textbox... Pin
Abhishek Sur4-Nov-09 4:26
professionalAbhishek Sur4-Nov-09 4:26 
GeneralRe: Calling javascript for ASP textbox... Pin
greendragons4-Nov-09 4:30
greendragons4-Nov-09 4:30 
GeneralRe: Calling javascript for ASP textbox... Pin
greendragons4-Nov-09 4:36
greendragons4-Nov-09 4:36 
GeneralRe: Calling javascript for ASP textbox... Pin
Not Active4-Nov-09 7:14
mentorNot Active4-Nov-09 7:14 
GeneralRe: Calling javascript for ASP textbox... Pin
Abhishek Sur4-Nov-09 8:30
professionalAbhishek Sur4-Nov-09 8:30 
greendragons wrote:
javascript source im getting typeLibBuilder stopped



Hey, I think this might help you.
http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=322157[^]

This seems to be a bug in Visual Studio 2008 for 64Bit machines. Lets try out the workarounds.. If you can fix it.


greendragons wrote:
like this is the function i wanna call
myjsfile.js


Yes of course. Just define a function in your JS file, add that using script tag and call its function.

Say you write like this :
function selectValue(obj)
{
   alert(obj.value);
}


If you write
txtbox.Attributes.Add("onblur", "javascript:selectValue(this);");
It will eventually produce an alert message with the value you provided in the textbox.

Other than that, if you want to call like this :
window.onload=initAll;

The function declaration of initAll should be before the actual call. Otherwise undefined handler will be assigned to the event. Smile | :)

Hope this helped you. Thumbs Up | :thumbsup:

Abhishek Sur
Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->

Microsoft Bing MAP using Javascript
CLR objects in SQL Server 2005
Uncommon C# Keywords
/xml>

QuestionHow to persist 'doubled up' usercontrol in a datalist and a repeater control across a postback - arghhh! Pin
Fu Manchu4-Nov-09 3:21
Fu Manchu4-Nov-09 3:21 
AnswerRe: How to persist 'doubled up' usercontrol in a datalist and a repeater control across a postback - arghhh! Pin
Nishant Singh4-Nov-09 3:35
Nishant Singh4-Nov-09 3:35 
GeneralRe: How to persist 'doubled up' usercontrol in a datalist and a repeater control across a postback - arghhh! Pin
Nishant Singh4-Nov-09 3:42
Nishant Singh4-Nov-09 3:42 
GeneralRe: How to persist 'doubled up' usercontrol in a datalist and a repeater control across a postback - arghhh! Pin
Fu Manchu4-Nov-09 4:05
Fu Manchu4-Nov-09 4:05 
Questionload image Pin
Arefeh Haghpnah4-Nov-09 3:17
Arefeh Haghpnah4-Nov-09 3:17 
AnswerRe: load image Pin
Not Active4-Nov-09 3:37
mentorNot Active4-Nov-09 3:37 
GeneralRe: load image Pin
Arefeh Haghpnah5-Nov-09 7:36
Arefeh Haghpnah5-Nov-09 7:36 
GeneralRe: load image Pin
Not Active5-Nov-09 7:56
mentorNot Active5-Nov-09 7:56 
AnswerRe: load image Pin
Eduard Keilholz4-Nov-09 3:40
Eduard Keilholz4-Nov-09 3:40 
GeneralRe: load image Pin
Arefeh Haghpnah5-Nov-09 7:44
Arefeh Haghpnah5-Nov-09 7:44 
Questionloading image Pin
Raja Soosai4-Nov-09 2:44
Raja Soosai4-Nov-09 2:44 
AnswerRe: loading image Pin
Not Active4-Nov-09 3:34
mentorNot Active4-Nov-09 3:34 
GeneralRe: loading image Pin
Raja Soosai4-Nov-09 19:32
Raja Soosai4-Nov-09 19:32 
GeneralRe: loading image Pin
Not Active5-Nov-09 1:10
mentorNot Active5-Nov-09 1:10 
GeneralRe: loading image Pin
Raja Soosai10-Nov-09 2:00
Raja Soosai10-Nov-09 2:00 
Questionframework for Line-Of-Buisness applications Pin
Alexandr Sergeevich Ilyin4-Nov-09 2:44
Alexandr Sergeevich Ilyin4-Nov-09 2:44 
AnswerRe: framework for Line-Of-Buisness applications Pin
Bassam Saoud4-Nov-09 5:55
Bassam Saoud4-Nov-09 5:55 

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.