Click here to Skip to main content
15,890,366 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: Datalist Control alternative layout... Pin
NeverHeardOfMe4-Nov-08 3:31
NeverHeardOfMe4-Nov-08 3:31 
GeneralRe: Datalist Control alternative layout... Pin
markymark824-Nov-08 3:43
markymark824-Nov-08 3:43 
GeneralRe: Datalist Control alternative layout... Pin
NeverHeardOfMe4-Nov-08 4:00
NeverHeardOfMe4-Nov-08 4:00 
GeneralRe: Datalist Control alternative layout... Pin
markymark824-Nov-08 4:23
markymark824-Nov-08 4:23 
Questionphp sprintf Pin
William Engberts3-Nov-08 22:52
William Engberts3-Nov-08 22:52 
QuestionCan we hide query string parameters in the URL? Pin
pzn3xq3-Nov-08 9:44
pzn3xq3-Nov-08 9:44 
AnswerRe: Can we hide query string parameters in the URL? Pin
cyber-drugs4-Nov-08 1:09
cyber-drugs4-Nov-08 1:09 
GeneralRe: Can we hide query string parameters in the URL? Pin
pzn3xq4-Nov-08 4:48
pzn3xq4-Nov-08 4:48 
Sure...I basically have a linqdata source retrieving the Orders table from northwind. I then have a grid displaying the OrderId, Shipped Date and a new column that is a hyperlink. The hyperlink will build a DataNavigateURL to pass the orderID and customerId to a new page (HyperLinkOrderDetails.aspx?aOrderID={0}&CustomerId={1}).

Any way that I can only display http://localhost/HyperLinkOrderDetails.aspx instead of http://localhost/HyperLinkOrderDetails.aspx?aOrderID=ABCD&CustomerId=12345?

  <asp:gridview id="GridView1" runat="server" allowpaging="True" xmlns:asp="#unknown">
      AllowSorting="True" AutoGenerateColumns="False" DataKeyNames="OrderID"
      DataSourceID="dsOrders" onrowcreated="GridView1_RowCreated"
      onrowdatabound="GridView1_RowDataBound"
      onrowcommand="GridView1_RowCommand">
      <columns>
          <asp:commandfield showselectbutton="True" />
          <asp:boundfield datafield="OrderID" headertext="OrderID" insertvisible="False">
              ReadOnly="True" SortExpression="OrderID" >
          <asp:boundfield datafield="ShippedDate" headertext="ShippedDate">
              SortExpression="ShippedDate" >
          <asp:hyperlinkfield>
              DataNavigateUrlFields="OrderId, CustomerId"
              DataNavigateUrlFormatString="HyperLinkOrderDetails.aspx?aOrderID={0}&CustomerId={1}"
              HeaderText = "Order Details"
              Text="View order details" />
</asp:hyperlinkfield></asp:boundfield></asp:boundfield></columns>
  </asp:gridview>
  <asp:linqdatasource id="dsOrders" runat="server" xmlns:asp="#unknown">
      ContextTypeName="NorthwindDataContext" TableName="Orders">
  </asp:linqdatasource>

GeneralRe: Can we hide query string parameters in the URL? Pin
perle14-Nov-08 12:04
perle14-Nov-08 12:04 
QuestionURL Encode - general understanding Pin
pzn3xq3-Nov-08 9:40
pzn3xq3-Nov-08 9:40 
QuestionMoving code a .js file Pin
chatko3-Nov-08 3:49
chatko3-Nov-08 3:49 
AnswerRe: Moving code a .js file Pin
NeverHeardOfMe3-Nov-08 6:23
NeverHeardOfMe3-Nov-08 6:23 
GeneralRe: Moving code a .js file Pin
chatko3-Nov-08 8:56
chatko3-Nov-08 8:56 
Questiontab controll not found in my vstudio 2005. how to get it gack? Pin
prasun.bheri3-Nov-08 1:03
prasun.bheri3-Nov-08 1:03 
AnswerRe: tab controll not found in my vstudio 2005. how to get it gack? Pin
Aman Bhullar3-Nov-08 23:32
Aman Bhullar3-Nov-08 23:32 
Questionhref="javascript:....." Pin
William Engberts2-Nov-08 22:42
William Engberts2-Nov-08 22:42 
AnswerRe: href="javascript:....." Pin
NeverHeardOfMe2-Nov-08 23:16
NeverHeardOfMe2-Nov-08 23:16 
Question[Message Deleted] Pin
songkeqiang2-Nov-08 21:51
songkeqiang2-Nov-08 21:51 
AnswerRe: How Can I save Web Page? Pin
NeverHeardOfMe2-Nov-08 23:11
NeverHeardOfMe2-Nov-08 23:11 
GeneralRe: How Can I save Web Page? Pin
Ashfield3-Nov-08 0:34
Ashfield3-Nov-08 0:34 
JokeRe: How Can I save Web Page? Pin
Guffa4-Nov-08 15:25
Guffa4-Nov-08 15:25 
QuestionMy client wants me to build an email template for weekly stock emails. Can somebody point me in the right direction? Pin
0vermind2-Nov-08 6:07
0vermind2-Nov-08 6:07 
AnswerRe: My client wants me to build an email template for weekly stock emails. Can somebody point me in the right direction? Pin
Jörgen Andersson3-Nov-08 6:09
professionalJörgen Andersson3-Nov-08 6:09 
QuestionBest way to set up a menu Pin
Tikkunim2-Nov-08 0:23
Tikkunim2-Nov-08 0:23 
AnswerRe: Best way to set up a menu Pin
Johnny ²2-Nov-08 1:43
Johnny ²2-Nov-08 1:43 

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.