Click here to Skip to main content
15,887,746 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Problems to Call System.Diagnostics.Process.Start("C:\\TEMP\\myfile.vbs"); Pin
Bassam Saoud31-Jul-08 12:00
Bassam Saoud31-Jul-08 12:00 
GeneralRe: Problems to Call System.Diagnostics.Process.Start("C:\\TEMP\\myfile.vbs"); Pin
Fabu19716-Aug-08 10:53
Fabu19716-Aug-08 10:53 
Questionasp calendar control showing multiple months Pin
SomeGuyThatIsMe31-Jul-08 8:30
SomeGuyThatIsMe31-Jul-08 8:30 
AnswerRe: asp calendar control showing multiple months Pin
ToddHileHoffer31-Jul-08 8:54
ToddHileHoffer31-Jul-08 8:54 
GeneralRe: asp calendar control showing multiple months Pin
SomeGuyThatIsMe31-Jul-08 9:35
SomeGuyThatIsMe31-Jul-08 9:35 
GeneralRe: asp calendar control showing multiple months Pin
SomeGuyThatIsMe31-Jul-08 10:45
SomeGuyThatIsMe31-Jul-08 10:45 
QuestionAspx Page Call issue Pin
manish.singhal31-Jul-08 7:51
manish.singhal31-Jul-08 7:51 
AnswerRe: Aspx Page Call issue Pin
SomeGuyThatIsMe31-Jul-08 8:50
SomeGuyThatIsMe31-Jul-08 8:50 
assuming you dont want to pass any kind of session info between the pages...you can use Response.Redirect(address);

since they are different projects i assume they will run under different domains, so session info wont transfer..and since they're different pages viewstate wont either. if you have to pass information between them, the only way i can think of is to either put the information into the query string and go to a "hide" page which puts it back in the session and redirects to the page you want(small security hole there..well not really small) or the better way is to put the info into a temp table in the database with a random pointless temp id that is generated each time, an dpassed to the new page in a query string, which th enew page uses to lookup the info and then delete it from the database, once its been read into memory..thereby preventing anyone from breaking in because the table will have random id's and will never have much data in it...once you're able to see the ID its already been deleted. if you want to hide the query string, you can either use a frameset when you first go to the page, or use a "hide" site to quickly move it to the session then go to the new page.

Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.

GeneralRe: Aspx Page Call issue Pin
manish.singhal31-Jul-08 19:20
manish.singhal31-Jul-08 19:20 
GeneralRe: Aspx Page Call issue Pin
SomeGuyThatIsMe1-Aug-08 2:03
SomeGuyThatIsMe1-Aug-08 2:03 
GeneralRe: Aspx Page Call issue Pin
manish.singhal11-Aug-08 21:23
manish.singhal11-Aug-08 21:23 
QuestionMissing Parameters in call to WebService Pin
Miszou31-Jul-08 7:12
Miszou31-Jul-08 7:12 
AnswerRe: Missing Parameters in call to WebService Pin
SomeGuyThatIsMe31-Jul-08 8:24
SomeGuyThatIsMe31-Jul-08 8:24 
QuestionCan't load WebControl from subfolder Pin
hajoshajo31-Jul-08 6:16
hajoshajo31-Jul-08 6:16 
AnswerRe: Can't load WebControl from subfolder Pin
Gayani Devapriya31-Jul-08 23:57
Gayani Devapriya31-Jul-08 23:57 
QuestionWeb.Config vs. Machine.Config Pin
KreativeKai31-Jul-08 5:13
professionalKreativeKai31-Jul-08 5:13 
AnswerRe: Web.Config vs. Machine.Config Pin
led mike31-Jul-08 5:31
led mike31-Jul-08 5:31 
Questionrequest project website from other PC in network Pin
piyush_patel111131-Jul-08 4:53
piyush_patel111131-Jul-08 4:53 
AnswerRe: request project website from other PC in network Pin
Bassam Saoud31-Jul-08 12:02
Bassam Saoud31-Jul-08 12:02 
GeneralRe: request project website from other PC in network Pin
piyush_patel11114-Aug-08 23:23
piyush_patel11114-Aug-08 23:23 
Questioncheck and click programmattically Pin
caradri31-Jul-08 4:21
caradri31-Jul-08 4:21 
QuestionRequired fields in a gridview [modified] - Answered Pin
Dan Neely31-Jul-08 4:07
Dan Neely31-Jul-08 4:07 
AnswerRe: Required fields in a gridview [modified] - Answered Pin
eyeseetee31-Jul-08 4:31
eyeseetee31-Jul-08 4:31 
QuestionRunning javascript from server side. Pin
JimBob SquarePants31-Jul-08 3:43
JimBob SquarePants31-Jul-08 3:43 
AnswerRe: Running javascript from server side. Pin
led mike31-Jul-08 4:44
led mike31-Jul-08 4:44 

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.