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

ASP.NET

 
GeneralRe: Formview update problem Pin
yorockk17-Jun-09 23:33
yorockk17-Jun-09 23:33 
GeneralRe: Formview update problem Pin
yorockk21-Jun-09 5:20
yorockk21-Jun-09 5:20 
GeneralRe: Formview update problem Pin
yorockk6-Jul-09 8:38
yorockk6-Jul-09 8:38 
Questionhow to implement webparts personalization Pin
lakshmichawala16-Jun-09 22:51
lakshmichawala16-Jun-09 22:51 
AnswerRe: how to implement webparts personalization Pin
Abhijit Jana16-Jun-09 23:00
professionalAbhijit Jana16-Jun-09 23:00 
GeneralRe: how to implement webparts personalization Pin
lakshmichawala16-Jun-09 23:05
lakshmichawala16-Jun-09 23:05 
GeneralRe: how to implement webparts personalization Pin
himanshu256116-Jun-09 23:17
himanshu256116-Jun-09 23:17 
QuestionError in javascript to open new window - netilla platform asp.net Pin
milan16-Jun-09 22:00
milan16-Jun-09 22:00 
Hi,

I have got a weird problem opening a simple .aspx page using a Javascript on the click of ASP.net server control. It works perfectly fine in my local system.

Scenario: The application is deployed to production server. Clients get remote access to the application thr' Netilla platform which runs in https mode.

Code snippet:

Protected Sub LinkButton2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles LinkButton2.Click

'Pop up new window for address collection...
Dim x As String
x = lstPickup.SelectedValue
Dim sb As New System.Text.StringBuilder()
sb.Append("<script language='javascript'>")
sb.Append("alert('" & x & "');")
sb.Append("window.open('CollectionAddress.aspx?selectedPickup=" + x + "', 'CollectionAddressPage',")
sb.Append("'width=500, height=500, menubar=yes, resizable=no');")
sb.Append("</script>")

Dim t As Type
t = Me.GetType()
If Not ClientScript.IsClientScriptBlockRegistered(t, "PopupScript") Then
ClientScript.RegisterClientScriptBlock(t, "PopupScript", sb.ToString())
End If
End Sub

The application URL looks is http://myApplication/Reserve.aspx but when browsed using Netilla it looks like..

https://ras.abc.co.uk/,host=192.168.145.32,port=80,proto=http/myApplication/Reserve.aspx


Okay..now the funny thing is that the same code works if it is copied to another new pages with nothing but just the above code and a button.

Weird.

Any help would be appreciated.

Many thanks
Milan G

Milan

QuestionHow to open an existing word doc from a form? Pin
kvalli16-Jun-09 21:27
kvalli16-Jun-09 21:27 
AnswerRe: How to open an existing word doc from a form? Pin
Manas Bhardwaj16-Jun-09 22:01
professionalManas Bhardwaj16-Jun-09 22:01 
QuestionJava script. Pin
Lijo Rajan16-Jun-09 21:21
Lijo Rajan16-Jun-09 21:21 
AnswerRe: Java script. Pin
Manas Bhardwaj16-Jun-09 22:12
professionalManas Bhardwaj16-Jun-09 22:12 
AnswerRe: Java script. Pin
Baran M16-Jun-09 23:39
Baran M16-Jun-09 23:39 
AnswerRe: Java script. Pin
Abhishek Sur17-Jun-09 0:00
professionalAbhishek Sur17-Jun-09 0:00 
QuestionMailing Problem Pin
deezZ16-Jun-09 21:18
deezZ16-Jun-09 21:18 
AnswerRe: Mailing Problem Pin
himanshu256116-Jun-09 21:38
himanshu256116-Jun-09 21:38 
GeneralRe: Mailing Problem Pin
deezZ16-Jun-09 21:42
deezZ16-Jun-09 21:42 
GeneralRe: Mailing Problem Pin
Abhijit Jana16-Jun-09 21:49
professionalAbhijit Jana16-Jun-09 21:49 
GeneralRe: Mailing Problem Pin
himanshu256116-Jun-09 21:53
himanshu256116-Jun-09 21:53 
GeneralRe: Mailing Problem Pin
deezZ16-Jun-09 21:59
deezZ16-Jun-09 21:59 
AnswerRe: Mailing Problem Pin
Abhijit Jana16-Jun-09 21:44
professionalAbhijit Jana16-Jun-09 21:44 
GeneralRe: Mailing Problem Pin
deezZ16-Jun-09 21:52
deezZ16-Jun-09 21:52 
GeneralRe: Mailing Problem Pin
Abhijit Jana17-Jun-09 1:57
professionalAbhijit Jana17-Jun-09 1:57 
GeneralRe: Mailing Problem Pin
deezZ17-Jun-09 3:13
deezZ17-Jun-09 3:13 
AnswerRe: Mailing Problem Pin
Vasudevan Deepak Kumar17-Jun-09 1:04
Vasudevan Deepak Kumar17-Jun-09 1:04 

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.