Click here to Skip to main content
15,913,361 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Error: Server tag is not well formed Pin
Jay_se16-Apr-07 23:59
Jay_se16-Apr-07 23:59 
QuestionWant to learn GridView control Pin
Sandeep Akhare16-Apr-07 22:29
Sandeep Akhare16-Apr-07 22:29 
AnswerRe: Want to learn GridView control Pin
gauthee16-Apr-07 23:37
gauthee16-Apr-07 23:37 
QuestionHow to get the culture info for languages other than english Pin
krishnakumark16-Apr-07 22:12
krishnakumark16-Apr-07 22:12 
QuestionEventLog errors regarding IIS 6.0 Pin
Srinu_ss516-Apr-07 21:15
Srinu_ss516-Apr-07 21:15 
AnswerRe: EventLog errors regarding IIS 6.0 Pin
Sathesh Sakthivel16-Apr-07 21:25
Sathesh Sakthivel16-Apr-07 21:25 
GeneralRe: EventLog errors regarding IIS 6.0 Pin
Srinu_ss517-Apr-07 22:42
Srinu_ss517-Apr-07 22:42 
QuestionPassing data from one .aspx page to another .aspx page Pin
shyamts16-Apr-07 21:02
shyamts16-Apr-07 21:02 
Hi,
I have two forms say Default.aspx and popup.aspx
Default.aspx cotains a textbox whereas popup.aspx contains a text area.
When user enters more than 10 characters in a textbox of default.aspx,popup.aspx should open and all characters of text box should get transfer to textarea of popup.aspx.
The code that i had written using javascript is as follows:


function limitText(){
var textboxvalue = document.getElementById("limitedtext").value;
if(textboxvalue.length == 10)
{
alert(textboxvalue);
window.open("popup.aspx?value=textboxvalue","","resizable=1,width=600,height=200")
}
}


And This is textbox code:








******Retrieving value in popup.aspx********
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
Dim strQuery As String = ""
strQuery = Request.QueryString("value").ToString()
TextArea1.Value = strQuery
End Sub


But When i put break point and check the value of strQuery, it is showing
"textboxvalue" instead of characters typed in the textbox.


I will be very grateful if you tell me that how should i pass the value through the url from the line:
window.open("popup.aspx?value=textboxvalue","","resizable=1,width=600,height=200")


Thanks
Shyam Frown | :(
AnswerRe: Passing data from one .aspx page to another .aspx page Pin
Mayank Parmar16-Apr-07 21:16
professionalMayank Parmar16-Apr-07 21:16 
AnswerRe: Passing data from one .aspx page to another .aspx page Pin
Sandeep Akhare16-Apr-07 21:37
Sandeep Akhare16-Apr-07 21:37 
GeneralRe: Passing data from one .aspx page to another .aspx page Pin
Colin Angus Mackay16-Apr-07 21:56
Colin Angus Mackay16-Apr-07 21:56 
GeneralRe: Passing data from one .aspx page to another .aspx page Pin
Sandeep Akhare16-Apr-07 22:06
Sandeep Akhare16-Apr-07 22:06 
AnswerRe: Passing data from one .aspx page to another .aspx page Pin
Guffa16-Apr-07 22:28
Guffa16-Apr-07 22:28 
QuestionWriting a reaport in word document Pin
Golam Md. Mostafa16-Apr-07 19:58
Golam Md. Mostafa16-Apr-07 19:58 
AnswerRe: Writing a reaport in word document Pin
Sylvester george16-Apr-07 21:18
Sylvester george16-Apr-07 21:18 
QuestionHelp Pin
Mkanchha16-Apr-07 19:54
Mkanchha16-Apr-07 19:54 
AnswerRe: Help Pin
uowzd0116-Apr-07 20:05
uowzd0116-Apr-07 20:05 
AnswerRe: Help Pin
gauthee16-Apr-07 20:06
gauthee16-Apr-07 20:06 
AnswerRe: Help Pin
Guffa16-Apr-07 21:41
Guffa16-Apr-07 21:41 
Questionloading image from database to website Pin
Abolfazl Sheikhloo16-Apr-07 19:51
Abolfazl Sheikhloo16-Apr-07 19:51 
AnswerRe: loading image from database to website Pin
gauthee16-Apr-07 20:08
gauthee16-Apr-07 20:08 
GeneralRe: loading image from database to website Pin
Abolfazl Sheikhloo16-Apr-07 20:30
Abolfazl Sheikhloo16-Apr-07 20:30 
GeneralRe: loading image from database to website Pin
thomasa16-Apr-07 21:39
thomasa16-Apr-07 21:39 
GeneralRe: loading image from database to website Pin
Abolfazl Sheikhloo16-Apr-07 21:51
Abolfazl Sheikhloo16-Apr-07 21:51 
GeneralRe: loading image from database to website [modified] Pin
thomasa16-Apr-07 22:36
thomasa16-Apr-07 22:36 

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.