Hi
I have a zip file that is encrypted with a tricky password, which I
need to extract from a .bat file.
The password is: -33,33_(}33"33*3 3=33|33^%33
So I try this line in a .bat file:
"c:\program files\winzip\wz unzip.exe" -o -s-33,33_(}33"33*3 3=33|33^%33
MYZIP.zip C:\MYZIP\
This hits a problem because of the double-quote...
User Profile
Collapse
-
Command Line Escape Characters (WinZip) Options
-
GridView footer controls - no default.
Hi
I have a footer row in a gridview that allows inserting of records into a table. One of the controls is a DropDownList control. I want this control to default to the value in the QueryString. So I have this code:
protected void Page_Load(objec t sender, EventArgs e)
{
DropDownList MenuInsert = gridviewPages.F ooterRow.FindCo ntrol("MenuInse rt") as DropDownList;
... -
General ASP .NET advice
Hi
I've recently upgraded from classic ASP to ASP.NET, and have been quite impressed by all the ready-to-use server controls available that you can just drop on your page, customize, and use. It really cuts down the amount of code in your page, or your code-behind page. Or so I thought...
I've been building a few websites and getting stuck quite frequently on what I would think are fairly simple things, like binding... -
ASP DropdownListBox Default not working
Hi
I have a DDLB in a gridview that allows record entry. The default is set by the QueryString. Here is the code:
...Code:<FooterTemplate> <asp:DropDownList ID="MenuInsert" runat="server" OnDataBound="test"> <asp:ListItem Text="" Value=""></asp:ListItem> -
ASP.NET security: custom login check
Hi
I'm new to ASP.NET (from classic ASP) and wasn't aware of the Forms Authentication security when I started working on a website. So I built a login page that stores a CustomUser object in the Session, and then I put a login check in the Master Page codebehind, Page_Load event, which redirects to the Login.aspx if the login check fails.
I realise NOW that I should have gone th Forms Authentication (using web.config)...
No activity results to display
Show More