Ask a Question related to ASP.NET General, Design and Development.
-
LIN #1
Re: popup window link in a datagrid
no we aren't. we are using a datagrid on a simple ASPX page.
regards,
LIN
"Ravikanth[MVP]" <dvravikanth@hotmail.com> wrote in message
news:02e601c35d9c$6d5600a0$a001280a@phx.gbl...> Hi
>
> My guess you are trying to open hyperlink from frames.
>
> Ravikanth[MVP]
>
>> open a popup window> >-----Original Message-----
> >i wanted to hyperlink a field in asp.net datagrid to> tutorialid=219 but it throws up> >which would provide more information.
> >I tried this tutroial:
> >[url]http://www.dotnetjunkies.com/tutorials.aspx?[/url]> >a [object] error.
> >how can we make this happen ?
> >
> >please advice.
> >
> >Thank you,
> >
> >LIN
> >
> >
> >
> >
> >.
> >
LIN Guest
-
popup window for rollover link
I am converting a GoLive web site to Dreamweaver, and need to recreate some rollover links that open in a new smaller size popup window. I have... -
popup window from datagrid using asp.net
I have a datagrid control that pulls images into a template column using the following code <asp:TemplateColumn HeaderText="Image">... -
Popup Window in a DataGrid
Hi, Do u know how to make a HyperLinkColumn in a DataGrid that would pop up a new window with details of the row that the user clicked on. I... -
DataBinding (Refreshing) a DataGrid within a Popup Window
Hello, I'm trying to set up a modal (preferably) popup window to do asimple web service query. The popup window contains somecriteria fields, a... -
dataGrid - link - popup window
I need to create a datagrid where the column headers (not the items) are links. When a user clicks on a link, it brings up a popup window. I guess... -
Ravikanth[MVP] #2
Re: popup window link in a datagrid
Hi
Try this:
In the DataGrid you are calling javascript function
directly. Write a separate javascript function which
will open new window and call that javascript function
from datagrid rows.
Replace the following code:
DataNavigateUrlFormatString="javascript:varwin=win dow.open
('WebForm2.aspx?ProductID=
{0}',null,'width=692,height=25');"
DataNavigateUrlFormatString="javascript:OpenDetail sWindow
({0});"
<script language= "JavaScript">
function OpenDetailsWindow()
{
varwin=window.open('WebForm2.aspx?ProductID=
{0}',null,'width=692,height=25');
}
</script>
Ravikanth[MVP]
page.>-----Original Message-----
>no we aren't. we are using a datagrid on a simple ASPXmessage>
>regards,
>LIN
>
>
>"Ravikanth[MVP]" <dvravikanth@hotmail.com> wrote in>news:02e601c35d9c$6d5600a0$a001280a@phx.gbl...>>> Hi
>>
>> My guess you are trying to open hyperlink from frames.
>>
>> Ravikanth[MVP]
>>
>>>> open a popup window>> >-----Original Message-----
>> >i wanted to hyperlink a field in asp.net datagrid to>> tutorialid=219 but it throws up>> >which would provide more information.
>> >I tried this tutroial:
>> >[url]http://www.dotnetjunkies.com/tutorials.aspx?[/url]>> >a [object] error.
>> >how can we make this happen ?
>> >
>> >please advice.
>> >
>> >Thank you,
>> >
>> >LIN
>> >
>> >
>> >
>> >
>> >.
>> >
>
>.
>Ravikanth[MVP] Guest
-
Saravana #3
Re: popup window link in a datagrid
Here is an article , in this i have explained how to open a new window when
you press a button from datagrid. Same concept you can apply for you
requirement.
[url]http://www.microsoft.com/india/msdn/articles/PopupCalendarinASP.aspx[/url]
--
Saravana
Microsoft India Community Star,MC**
[url]www.extremeexperts.com[/url]
"LIN" <junkvaluesnotallowed@football.com> wrote in message
news:u$z24eZXDHA.1940@TK2MSFTNGP10.phx.gbl...up> i wanted to hyperlink a field in asp.net datagrid to open a popup window
> which would provide more information.
> I tried this tutroial:
> [url]http://www.dotnetjunkies.com/tutorials.aspx?tutorialid=219[/url] but it throws> a [object] error.
> how can we make this happen ?
>
> please advice.
>
> Thank you,
>
> LIN
>
>
>
>
Saravana Guest



Reply With Quote

