Click to See Complete Forum and Search --> : needed


eid1984
July 24th, 2006, 08:44 AM
i need to know how can pass parameter throw Url in asp.net



Example:
response.redirect("default.aspx"&parmeter)
-----------
how can get the value from default page what is the code exactly.

Shuja Ali
July 24th, 2006, 08:53 AM
This is known as Query String. You can do it like this Response.Redirect(default.aspx?Parameter=" & valueofparamter)And you get the value of the Parameter using Request.QueryString method.

eid1984
July 25th, 2006, 02:03 AM
hi,how are you i would to know how can read from text file and save to

Shuja Ali
July 25th, 2006, 02:08 AM
Check FileStream Class in System.IO namespace. It will be better if you take a look at MSDN for the references.

eid1984
July 25th, 2006, 06:09 AM
thanx you i hope to hear from you

eid1984
July 26th, 2006, 03:19 AM
what the different bettween datagrid and the grid view

Shuja Ali
July 26th, 2006, 03:50 AM
DataGrid is a control that was shipped with .NET Framework 1.1 and DataGridView is shipped with .NET 2.0.

Take a look at MSDN.

eid1984
July 27th, 2006, 01:39 AM
how can save imge im database from web site like this


insert image:------------------------- browes

here the admin of the website put the url of Image location the when he press submit the image store in database

seconed :

when he return to the website the new image must appear


how can do that if have any example help me..