Click here to Skip to main content
15,922,533 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: generating asp:textbox in loop Pin
Christian Graus22-Dec-05 9:34
protectorChristian Graus22-Dec-05 9:34 
GeneralRe: generating asp:textbox in loop Pin
g00fyman22-Dec-05 17:22
g00fyman22-Dec-05 17:22 
GeneralRe: generating asp:textbox in loop Pin
analytiks22-Dec-05 19:33
analytiks22-Dec-05 19:33 
Questionjpeg image DPI property Pin
MichaelBlane21-Dec-05 8:17
MichaelBlane21-Dec-05 8:17 
QuestionASP.NET and JAVASCRIPT Pin
MinaFawzi20-Dec-05 22:35
MinaFawzi20-Dec-05 22:35 
AnswerRe: ASP.NET and JAVASCRIPT Pin
enjoycrack21-Dec-05 7:03
enjoycrack21-Dec-05 7:03 
GeneralRe: ASP.NET and JAVASCRIPT Pin
MinaFawzi21-Dec-05 22:23
MinaFawzi21-Dec-05 22:23 
GeneralRe: ASP.NET and JAVASCRIPT Pin
analytiks22-Dec-05 1:12
analytiks22-Dec-05 1:12 
i believe you want to invoke a post back from javascript so that you can process the datagrid updation in the code behind ~ if this is it then what you can do is have a hidden ASP Button in the aspx page ~ say 'btnA' ~ call the js function below ~ this will cause a post back for btnA click event ~ in the btnA's click handler you can write the datagrid updation code

function submitdatatoserver()
{
var theform;
if (window.navigator.appName.toLowerCase().indexOf("netscape") > -1) {
theform = document.forms["form1"];
}
else
{
theform = document.form1;
}
theform.__EVENTTARGET.value = 'btnA'.split("$").join(":");
theform.__EVENTARGUMENT.value = '';
theform.submit();
}

-- modified at 7:14 Thursday 22nd December, 2005
GeneralRe: ASP.NET and JAVASCRIPT Pin
MinaFawzi22-Dec-05 5:02
MinaFawzi22-Dec-05 5:02 
GeneralRe: ASP.NET and JAVASCRIPT Pin
analytiks22-Dec-05 19:28
analytiks22-Dec-05 19:28 
GeneralRe: ASP.NET and JAVASCRIPT Pin
MinaFawzi24-Dec-05 3:36
MinaFawzi24-Dec-05 3:36 
GeneralRe: ASP.NET and JAVASCRIPT Pin
analytiks25-Dec-05 2:38
analytiks25-Dec-05 2:38 
GeneralRe: ASP.NET and JAVASCRIPT Pin
MinaFawzi25-Dec-05 13:31
MinaFawzi25-Dec-05 13:31 
GeneralRe: ASP.NET and JAVASCRIPT Pin
enjoycrack22-Dec-05 6:52
enjoycrack22-Dec-05 6:52 
QuestionODBC on the WebServer Pin
gmhanna20-Dec-05 10:25
gmhanna20-Dec-05 10:25 
GeneralRe: ODBC on the WebServer Pin
Andy Brummer20-Dec-05 11:17
sitebuilderAndy Brummer20-Dec-05 11:17 
GeneralRe: ODBC on the WebServer Pin
gmhanna20-Dec-05 12:47
gmhanna20-Dec-05 12:47 
AnswerRe: ODBC on the WebServer Pin
Guffa20-Dec-05 21:31
Guffa20-Dec-05 21:31 
GeneralRe: ODBC on the WebServer Pin
gmhanna21-Dec-05 5:42
gmhanna21-Dec-05 5:42 
QuestionInternet Explorer Title Bar Corrupt -- Displays Only Square Boxes Pin
Kevin McFarlane20-Dec-05 4:17
Kevin McFarlane20-Dec-05 4:17 
AnswerRe: Internet Explorer Title Bar Corrupt -- Displays Only Square Boxes Pin
jcrussell22-Dec-05 18:00
jcrussell22-Dec-05 18:00 
GeneralRe: Internet Explorer Title Bar Corrupt -- Sorted Pin
Kevin McFarlane22-Dec-05 23:46
Kevin McFarlane22-Dec-05 23:46 
QuestionCan't catch ActiveX control events after web page refresh Pin
Calc2020-Dec-05 3:21
Calc2020-Dec-05 3:21 
Questiongetting resource report in asp Pin
karanba19-Dec-05 23:19
karanba19-Dec-05 23:19 
AnswerRe: getting resource report in asp Pin
Guffa20-Dec-05 3:27
Guffa20-Dec-05 3:27 

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.